From 904288f9628ace071a13b6e4e3c371c4ebaa4b42 Mon Sep 17 00:00:00 2001 From: GSTAR <44748406+GLlgGL@users.noreply.github.com> Date: Tue, 9 Dec 2025 16:25:52 +0100 Subject: [PATCH] Update TurboVidPlay.ts --- src/extractor/TurboVidPlay.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');