This commit is contained in:
doms9 2025-10-04 15:17:00 -04:00
parent b53a4fd1a6
commit 00000d960c
3 changed files with 3 additions and 3 deletions

View file

@ -143,7 +143,7 @@ async def get_events(
if cached_keys & {k}:
continue
if not start_ts <= v["event_ts"] < end_ts:
if not start_ts <= v["event_ts"] <= end_ts:
continue
live.append({**v})