This commit is contained in:
doms9 2025-12-19 14:05:41 -05:00
parent 8ac6ca8360
commit 00000d94e3
2 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@ async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
if not (html_data := await network.request(BASE_URL, log=log)):
return events
pattern = re.compile(r"^(?:LIVE|\d+\s+(minutes?)\b)", re.IGNORECASE)
pattern = re.compile(r"^(?:LIVE|(?:[1-9]|[12]\d|30)\s+minutes?\b)", re.IGNORECASE)
soup = HTMLParser(html_data.content)