From b9514284dabeb2bb86a26a89cc664dacf6c9eb92 Mon Sep 17 00:00:00 2001 From: bytedream Date: Sun, 15 Dec 2024 16:16:38 +0100 Subject: [PATCH] Fix voe.sx --- src/lib/match.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/match.ts b/src/lib/match.ts index 87e65d4..f16c679 100644 --- a/src/lib/match.ts +++ b/src/lib/match.ts @@ -240,10 +240,10 @@ export const Voe: Match = { name: 'Voe', id: 'voe', domains: ['voe.sx'], - regex: /https?:\/\/\S*m3u8.+(?=['"])/gm, + regex: /(?<='hls':\s*')\S*(?=')/gm, match: async (match: RegExpMatchArray) => { - return match[0]; + return atob(match[0]); } };