From f717d37d07254c855c564db9d12791869d018b9c Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Sun, 2 Aug 2026 07:57:10 +0200 Subject: [PATCH] fix: add missing timezone field to EventsListResponse API response --- api/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/main.py b/api/main.py index d684e57..a62071f 100644 --- a/api/main.py +++ b/api/main.py @@ -124,6 +124,7 @@ def get_events( events=events, count=len(events), query_time=datetime.now(timezone.utc).replace(tzinfo=None).isoformat() + "Z", + timezone=TIMEZONE_NAME, # <--- Add this line )