update M3U8

This commit is contained in:
GitHub Actions Bot 2026-03-31 13:05:06 -04:00
parent f5445c8141
commit 05816f6de6
4 changed files with 778 additions and 384 deletions

View file

@ -57,9 +57,7 @@ async def get_events() -> list[dict[str, str]]:
for a in row.css("a.list-group-item[href]"):
splits = a.text(strip=True).split(":")
del splits[-3:]
event_name = ":".join(splits)
event_name = ":".join(splits[:2]).split("@")[0].strip()
if not (href := a.attributes.get("href")):
continue