From 5951837ab992987c7c81e46fc8d6e91aeb20e6f9 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Thu, 7 May 2026 18:01:05 +0300 Subject: [PATCH] fix: automatic fallback to hls.js --- ui/app/components/VideoPlayer.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/app/components/VideoPlayer.vue b/ui/app/components/VideoPlayer.vue index 96b8df28..c55fbd95 100644 --- a/ui/app/components/VideoPlayer.vue +++ b/ui/app/components/VideoPlayer.vue @@ -1119,10 +1119,6 @@ async function src_error(event: Event) { return; } - if (videoElement.value?.paused && !active.value) { - return; - } - console.warn('Source failed to load, attempting HLS fallback via hls.js...', event); attach_hls(currentPlaybackUrl('m3u8', true)); }