diff --git a/src/features/StreamPlayer/hooks/index.tsx b/src/features/StreamPlayer/hooks/index.tsx index 22ddb37c..96521ee8 100644 --- a/src/features/StreamPlayer/hooks/index.tsx +++ b/src/features/StreamPlayer/hooks/index.tsx @@ -190,7 +190,7 @@ export const useVideoPlayer = ({ const onPlayedProgress = (playedMs: number) => { const chapter = getActiveChapter() const value = Math.max(playedMs - chapter.startOffsetMs, 0) - setPlayerState({ playedProgress: value }) + setPlayerState({ buffering: false, playedProgress: value }) progressChangeCallback(value / 1000) }