This commit is contained in:
doms9 2025-11-29 12:04:59 -05:00
parent ba75375969
commit 00000d9dca

View file

@ -122,6 +122,13 @@ async def process_event(
log.warning(f"URL {url_num}) No available stream links.")
return
first_available = await page.wait_for_selector(
'a[href*="/stream/"]',
timeout=5_000,
)
await first_available.click()
wait_task = asyncio.create_task(got_one.wait())
try: