From df3c66a24cd5f6276abc777bcac86193c7d2517a Mon Sep 17 00:00:00 2001 From: bytedream Date: Tue, 7 Jul 2026 17:27:10 +0200 Subject: [PATCH] fix vidmoly --- src/lib/host/vidmoly.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/host/vidmoly.ts b/src/lib/host/vidmoly.ts index 4981f83..617eb4b 100644 --- a/src/lib/host/vidmoly.ts +++ b/src/lib/host/vidmoly.ts @@ -7,13 +7,13 @@ export default { // always points to vidmoly.net. the "outer" vidmoly site also has a link to some video, which, would // be preferred to use, as the whole site could be replaced by the native video player instead of just the iframe, // but said link doesn't always point the same video as the iframe - domains: ['vidmoly.net'], - regex: [/(?<=file:").+\.m3u8.*(?=")/gm], + domains: ['vidmoly.net', 'vidmoly.biz'], + regex: [/file:\s?'(http.*)'/], match: async function (match: RegExpMatchArray) { return { type: HostMatchType.HLS, - url: match[0] + url: match[1] }; } } satisfies Host;