From f1bcb761c06d8e45c04ad6203be1a1cf7d86084e Mon Sep 17 00:00:00 2001 From: Matej Stieranka Date: Tue, 1 Jul 2025 13:22:57 +0200 Subject: [PATCH] temp: log offsets in now --- src/db/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/db/index.ts b/src/db/index.ts index 233cfac..eae546b 100644 --- a/src/db/index.ts +++ b/src/db/index.ts @@ -162,6 +162,7 @@ export async function getNowEvents() { return []; // Skip fetching now events during Docker build } const now = new Date(); + console.log("Offset:", now.getTimezoneOffset(), now.toISOString()); return db .select() .from(eventsTable)