Update StreamUp.ts

This commit is contained in:
GSTAR 2026-01-06 21:46:30 +01:00 committed by webstreamr
parent 5182486a78
commit 8b3e2765c6

View file

@ -43,6 +43,8 @@ export class StreamUp extends Extractor {
const sessionMatch = html.match(/'([a-f0-9]{32})'/);
const encryptedMatch = html.match(/'([A-Za-z0-9+/=]{200,})'/);
let streamUrl: string | undefined;
if (sessionMatch && encryptedMatch) {
/* encrypted flow */
const sessionId = sessionMatch[1] as string;