From 614847c99b53351c827b87c40e138400942f7d1a Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Thu, 25 Sep 2025 18:23:44 -0400 Subject: [PATCH] Handle opaque URL probes via video fallback --- js/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/app.js b/js/app.js index 25be6895..1a58ee62 100644 --- a/js/app.js +++ b/js/app.js @@ -3476,6 +3476,10 @@ class bitvidApp { } if (response.type === "opaque") { + const fallback = await this.probeUrlWithVideoElement(trimmed); + if (fallback && fallback.outcome) { + return fallback; + } return { outcome: "opaque" }; }