Fix streamtape regex

This commit is contained in:
bytedream 2022-07-13 18:21:03 +02:00
parent b07d0b4be6
commit e2b8d884af

View File

@ -121,10 +121,10 @@ class Streamtape implements Match {
domains = [
'streamtape.com'
]
regex = new RegExp(/id=\S*(?=')/gm)
regex = new RegExp(/\/get_video\S*(?=')/gm)
async match(match: RegExpMatchArray): Promise<string> {
return `https://streamtape.com/get_video?${match[0]}`
return `https://streamtape.com${match[0]}`
}
}