This commit is contained in:
doms9 2025-09-17 19:35:28 -04:00
parent bfaf613dfa
commit 00000d9769
11 changed files with 662 additions and 590 deletions

View file

@ -13,9 +13,9 @@ from .utils import (
LOGOS,
TZ,
capture_req,
firefox,
get_logger,
load_cache,
new_browser,
now,
safe_process_event,
write_cache,
@ -103,7 +103,7 @@ async def fetch_xml_stream(url: str, ssl_ctx: ssl.SSLContext) -> io.BytesIO | No
async def process_event(url: str, url_num: int) -> str | None:
async with async_playwright() as p:
browser, context = await firefox(p, ignore_https_errors=True)
browser, context = await new_browser(p, ignore_https_errors=True)
page = await context.new_page()