Recordings improvements (#12417)

This commit is contained in:
Nicolas Mowen
2024-07-12 15:17:38 -06:00
committed by GitHub
parent 51153af944
commit d08fe170f2
2 changed files with 2 additions and 1 deletions

View File

@@ -110,6 +110,8 @@ export default function HlsVideoPlayer({
if (!hlsRef.current) {
hlsRef.current = new Hls();
hlsRef.current.attachMedia(videoRef.current);
} else {
hlsRef.current.detachMedia();
}
hlsRef.current.loadSource(currentSource);

View File

@@ -204,7 +204,6 @@ export default function DynamicVideoPlayer({
clearTimeout(loadingTimeout);
}
setIsLoading(false);
setNoRecording(false);
}}
setFullResolution={setFullResolution}