This commit is contained in:
doms9 2025-09-02 18:06:35 -04:00
parent 7617aa4bc6
commit 00000d941c
6 changed files with 243 additions and 159 deletions

View file

@ -11,7 +11,7 @@ log = get_logger(__name__)
urls: dict[str, dict[str, str]] = {}
mirrors = [
MIRRORS = [
"https://fstv.online",
"https://fstv.space",
"https://fstv.zip",
@ -103,7 +103,7 @@ async def fetch_m3u8(client: httpx.AsyncClient, url: str) -> tuple[str, list[str
async def main(client: httpx.AsyncClient) -> None:
if not (base_url := await get_base(client, mirrors)):
if not (base_url := await get_base(client, MIRRORS)):
log.warning("No working FSTV mirrors")
return