From 8e9eafe73508ad978fd1318f4b0924b9e8c3a74a Mon Sep 17 00:00:00 2001 From: "every.channel" Date: Tue, 24 Feb 2026 03:34:07 -0800 Subject: [PATCH] web: surface clear archive replay compatibility error --- apps/web/app.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/web/app.js b/apps/web/app.js index 7198fb6..6eec15b 100644 --- a/apps/web/app.js +++ b/apps/web/app.js @@ -232,6 +232,12 @@ async function mountArchivePlayer(name) { video.autoplay = true; video.muted = false; video.playsInline = true; + video.addEventListener("error", () => { + setHint( + "Archive replay bytes are not browser-HLS compatible yet (legacy container); timeline is available, live path is unaffected.", + "warn", + ); + }); mount.appendChild(video); const archiveUrl = `/api/archive/${encodeURIComponent(name)}/master.m3u8`;