From fa41a8de8e9d7ff69ed76e6e8ec94b9d276c1e99 Mon Sep 17 00:00:00 2001 From: ByteDream Date: Mon, 24 Oct 2022 23:10:27 +0200 Subject: [PATCH] Fix voe regex --- src/match/matches.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/match/matches.ts b/src/match/matches.ts index 9afcc74..db0ed04 100644 --- a/src/match/matches.ts +++ b/src/match/matches.ts @@ -184,7 +184,7 @@ class Voe implements Match { domains = [ 'voe.sx' ] - regex = new RegExp(/https?:\/\/\S*m3u8(?=")/gm) + regex = new RegExp(/https?:\/\/\S*m3u8.+(?=')/gm) async match(match: RegExpMatchArray): Promise { return match[0]