diff --git a/materialious/src/lib/components/player/Player.svelte b/materialious/src/lib/components/player/Player.svelte index 8bbe552f..37dfe0f7 100644 --- a/materialious/src/lib/components/player/Player.svelte +++ b/materialious/src/lib/components/player/Player.svelte @@ -728,7 +728,9 @@ let toSetTime = 0; const watchHistory = await getVideoWatchHistory(data.video.videoId); - if (watchHistory && watchHistory.progress > toSetTime) toSetTime = watchHistory.progress; + if (watchHistory && watchHistory.progress < playerMaxKnownTime - 10) { + toSetTime = watchHistory.progress; + } return toSetTime; }