pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update base.ts

Pas 38d4e692 bc6e6ff1

+8
+8
src/components/player/display/base.ts
··· 187 187 errorName: data.error.name, 188 188 type: "hls", 189 189 }); 190 + } else if (data.details === "manifestLoadError") { 191 + // Handle manifest load errors specifically 192 + emit("error", { 193 + message: "Failed to load HLS manifest", 194 + stackTrace: data.error?.stack || "", 195 + errorName: data.error?.name || "ManifestLoadError", 196 + type: "hls", 197 + }); 190 198 } 191 199 }); 192 200 hls.on(Hls.Events.MANIFEST_LOADED, () => {