fix(frontend): Error Boundary, HomePage error state, HLS catch — quick wins pre-Bloc-B

This commit is contained in:
2026-03-15 00:53:46 +01:00
parent f80b8cb81c
commit df8e594d57
4 changed files with 43 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ function NativePlayer({ url }: { url: string }) {
hls = new Hls();
hls.loadSource(url);
hls.attachMedia(video);
});
}).catch(() => { /* HLS non disponible — dégradation silencieuse */ });
}
return () => { hls?.destroy(); };