hls: fix endless loading in Firefox (#4706)

Co-authored-by: aler9 <46489434+aler9@users.noreply.github.com>
This commit is contained in:
dishmaker
2025-07-12 22:05:18 +02:00
committed by GitHub
co-authored by aler9
parent cf28d6028a
commit 1bd5febcad
+3 -1
View File
@@ -195,7 +195,9 @@ const init = () => {
loadStream();
};
window.addEventListener('DOMContentLoaded', init);
// use load instead of DOMContentLoaded, otherwise, in Firefox,
// the page gets stuck in the "loading" state.
window.addEventListener('load', init);
</script>