We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82197c0 commit c01ba46Copy full SHA for c01ba46
packages/core-web/src/webrtc/shared.ts
@@ -273,7 +273,9 @@ export async function getRedirectUrl(
273
playbackIdPattern,
274
`$1${REPLACE_PLACEHOLDER}`,
275
);
276
- cachedRedirectUrl = cachedUrl;
+ if (!cachedUrl.searchParams.has("ingestpb", "true")) {
277
+ cachedRedirectUrl = cachedUrl;
278
+ }
279
}
280
281
return parsedUrl;
0 commit comments