use packer for filemoon

This commit is contained in:
sdaqo
2023-04-09 07:01:11 +02:00
parent d98035b8d0
commit 544adfa7b2
3 changed files with 7 additions and 10 deletions

View File

@ -44,7 +44,7 @@ async function main() {
}
document.title = `Stream Bypass (${domain})`
new URL(url).pathname.endsWith('.m3u8') ? await play_hls(url) : await play_native(url)
new URL(url).pathname.contains('.m3u8') ? await play_hls(url) : await play_native(url)
}
main()