fix: remove fake config from comet scraper

This commit is contained in:
g0ldyy
2026-01-09 22:55:22 +01:00
parent e246011544
commit b5856b6554
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ async def check_instance(session: aiohttp.ClientSession, url: str) -> InstanceSt
if manifest_ok:
try:
async with session.get(f"{url}/e30=/stream/movie/{IMDB_ID}.json") as resp:
async with session.get(f"{url}/stream/movie/{IMDB_ID}.json") as resp:
if resp.status == 200:
data = await resp.json()
streams = data.get("streams", [])