From 00000d9684cf4ab6c5ab791c1dafc5976b1edc22 Mon Sep 17 00:00:00 2001 From: doms9 <96013514+doms9@users.noreply.github.com> Date: Sat, 11 Oct 2025 18:58:20 -0400 Subject: [PATCH] e --- M3U8/scrapers/watchfooty.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/M3U8/scrapers/watchfooty.py b/M3U8/scrapers/watchfooty.py index 590ef48..587e600 100644 --- a/M3U8/scrapers/watchfooty.py +++ b/M3U8/scrapers/watchfooty.py @@ -192,10 +192,12 @@ async def get_events( name = event["title"] league = event["league"] - if not (date := event.get("date")): + if not (ts := event.get("timestamp")): continue - event_dt = Time.from_str(date) + start_ts = int(str(ts)[:-3]) + + event_dt = Time.from_ts(start_ts) if not start_dt <= event_dt <= end_dt: continue