- edit scraping method for streamcenter.py
- misc edits.
This commit is contained in:
doms9 2026-04-09 01:25:23 -04:00
parent 1af71f0610
commit 00000d9dec
3 changed files with 64 additions and 65 deletions

View file

@ -85,7 +85,7 @@ async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
event_dt = Time.from_str(event["start"], timezone="UTC")
if now.date() != event_dt.date():
if event_dt.date() != now.date():
continue
if not (channels := event.get("channels")):