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

@ -13,7 +13,7 @@ log = get_logger(__name__)
urls: dict[str, dict[str, str]] = {}
mirrors = [
MIRRORS = [
"https://aceztrims.pages.dev/",
"https://acestrlms.pages.dev/",
]
@ -97,7 +97,7 @@ async def get_m3u8_links(client: httpx.AsyncClient, url: 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 ace mirrors")
return