Seeking does not always work
Created by: matthew-mahony
I merged the fix for #807 (closed) / #816, which fixed the issue for loading a video at a specific time. However, seeking started failing intermittently. Sometimes after clicking on the seek bar, the video would not update.
I have been able to fix this locally by changing the line in SameTimeRequestRule currentTime = playbackController.isPlaybackStarted() ? playbackController.getTime() : playbackController.getStreamStartTime(streamInfo); to currentTime = playbackController.isSeeking() ? playbackController.getTime() : playbackController.getStreamStartTime(streamInfo);
Let me know if there is something risky our flat out wrong with that fix, but it is working for me so far.
Thanks,
Matt Mahony