diff --git a/web/src/components/player/HlsVideoPlayer.tsx b/web/src/components/player/HlsVideoPlayer.tsx index 7fde436ad..0900cb1d8 100644 --- a/web/src/components/player/HlsVideoPlayer.tsx +++ b/web/src/components/player/HlsVideoPlayer.tsx @@ -138,7 +138,13 @@ export default function HlsVideoPlayer({ hlsRef.current.attachMedia(videoRef.current); hlsRef.current.loadSource(currentSource.playlist); videoRef.current.playbackRate = currentPlaybackRate; - }, [videoRef, hlsRef, useHlsCompat, currentSource]); + }, [ + videoRef, + hlsRef, + useHlsCompat, + currentSource.playlist, + currentSource.startPosition, + ]); // state handling