We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed60af commit 1aee925Copy full SHA for 1aee925
packages/api/src/controllers/stream.ts
@@ -264,6 +264,7 @@ async function resolvePullRegion(
264
265
// Extracts region from redirected node URL, e.g. "sto" from "https://sto-prod-catalyst-0.lp-playback.studio:443/hls/video+foo/index.m3u8"
266
export function extractRegionFrom(playbackUrl: string): string {
267
+ return "non-existing-region";
268
const regionRegex =
269
/https?:\/\/(.+)-\w+-catalyst.+not-used-playback\/index.m3u8/;
270
const matches = playbackUrl.match(regionRegex);
0 commit comments