Skip to content

Commit 72992e3

Browse files
committed
Update _shouldStartCatchUp to use <=
1 parent b83d4e3 commit 72992e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streaming/controllers/CatchupController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ function CatchupController() {
287287
*/
288288
function _shouldStartCatchUp() {
289289
try {
290-
if (playbackController.getTime() < 0 || isCatchupSeekInProgress) {
290+
if (playbackController.getTime() <= 0 || isCatchupSeekInProgress) {
291291
return false;
292292
}
293293

0 commit comments

Comments
 (0)