Fix voe regex

This commit is contained in:
ByteDream 2022-10-24 23:10:27 +02:00
parent ce8bc855b9
commit fa41a8de8e

View File

@ -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<string> {
return match[0]