diff --git a/AUTHORS b/AUTHORS index 7b10cfa3c6..aa44d0a088 100644 --- a/AUTHORS +++ b/AUTHORS @@ -39,6 +39,7 @@ Enson Choy Esteban Dosztal Fadomire Fernando Neira +Gabor Balogh Gerardo Meola Gil Gonen Giorgio Gamberoni diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2384a16a9f..9e60317e21 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -57,6 +57,7 @@ Esteban Dosztal Fadomire Fernando Neira François Beaufort +Gabor Balogh Gary Katsevman Gerardo Meola Gil Gonen diff --git a/lib/media/video_wrapper.js b/lib/media/video_wrapper.js index 05e02911f8..950734cce0 100644 --- a/lib/media/video_wrapper.js +++ b/lib/media/video_wrapper.js @@ -275,7 +275,8 @@ shaka.media.VideoWrapper.PlayheadMover = class { } // Yay! We were successful. - if (this.mediaElement_.currentTime != this.originTime_) { + if (this.mediaElement_.currentTime != this.originTime_ || + this.mediaElement_.currentTime === this.targetTime_) { this.timer_.stop(); return; }