Update Vidmoly.ts

This commit is contained in:
GSTAR 2025-11-28 17:32:32 +01:00 committed by GitHub
parent ae00b2f5b5
commit 6143a37d02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,7 +38,7 @@ export class Vidmoly extends Extractor {
// Extract HLS URL
const sourcesMatch = embedHtml.match(/sources:\s*\[\{file:"(?<url>[^"]+)"/);
const mediaUrl = sourcesMatch?.groups?.url;
const mediaUrl = sourcesMatch?.groups?.['url'];
let height: number | undefined;