From 69879ae62892a2ff3ab9400f2531414467d1d77a Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 5 Jul 2024 19:56:47 -0500 Subject: [PATCH] increase onplaying timeout --- web/src/components/player/MsePlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/player/MsePlayer.tsx b/web/src/components/player/MsePlayer.tsx index 491f31d62..0300557de 100644 --- a/web/src/components/player/MsePlayer.tsx +++ b/web/src/components/player/MsePlayer.tsx @@ -394,7 +394,7 @@ function MSEPlayer({ playTimeoutRef.current = setTimeout(() => { setIsPlaying(true); onPlaying?.(); - }, 5000); + }, 7000); } if (onError != undefined) { if (videoRef.current?.paused) {