diff --git a/src/extractor/TurboVidPlay.ts b/src/extractor/TurboVidPlay.ts index 8d59349..aeceaba 100644 --- a/src/extractor/TurboVidPlay.ts +++ b/src/extractor/TurboVidPlay.ts @@ -57,7 +57,7 @@ export class TurboVidPlay extends Extractor { ); const groups = match?.groups as Record | undefined; - const mediaUrl = groups?.url; + const mediaUrl = groups?.['url']; if (!mediaUrl) { throw new NotFoundError('Video link not found');