Handle opaque URL probes via video fallback

This commit is contained in:
thePR0M3TH3AN
2025-09-25 18:23:44 -04:00
parent df6878aef6
commit 614847c99b

View File

@@ -3476,6 +3476,10 @@ class bitvidApp {
} }
if (response.type === "opaque") { if (response.type === "opaque") {
const fallback = await this.probeUrlWithVideoElement(trimmed);
if (fallback && fallback.outcome) {
return fallback;
}
return { outcome: "opaque" }; return { outcome: "opaque" };
} }