Update StreamUp.ts

This commit is contained in:
GSTAR 2026-01-06 21:42:50 +01:00 committed by webstreamr
parent 7ab34e3e63
commit 5182486a78

View file

@ -43,8 +43,6 @@ 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;