mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-06-27 18:40:31 +02:00
Fix filemoon.to
This commit is contained in:
@ -20,10 +20,16 @@ async function main() {
|
||||
return;
|
||||
}
|
||||
|
||||
const re = document.body.innerHTML.match(match.regex);
|
||||
let re = null;
|
||||
for (const regex of match.regex) {
|
||||
if ((re = document.body.innerHTML.match(regex)) !== null) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (re === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (redirect) {
|
||||
await Redirect.delete();
|
||||
}
|
||||
|
Reference in New Issue
Block a user