update M3U8

This commit is contained in:
GitHub Actions Bot 2026-03-17 18:01:16 -04:00
parent 339bcbd30c
commit fb91d85d11
3 changed files with 475 additions and 629 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -64,7 +64,9 @@ async def get_events(cached_keys: list[str]) -> list[dict[str, str]]:
if (genre := info.get("genre", 999)) not in SPORT_GENRES:
continue
event_dt = Time.from_str(info["time"], timezone="EST")
event_time = " ".join(info["time"].split("T"))
event_dt = Time.from_str(event_time, timezone="EST")
if not start_dt <= event_dt <= end_dt:
continue