From c19944bc2759dd090cca2304c7ab546a2a145121 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Wed, 5 Aug 2026 09:54:39 +0100 Subject: [PATCH] chore: document local time (BST) usage, no UTC conversion --- recorder.go | 1 + 1 file changed, 1 insertion(+) diff --git a/recorder.go b/recorder.go index 17e4226..f9acdfc 100644 --- a/recorder.go +++ b/recorder.go @@ -119,6 +119,7 @@ func (rm *RecorderManager) startRecorder(cam CameraConfig) { } // Generate filename with start-of-segment timestamp. + // All timestamps are in local time (BST) — no UTC conversion. now := time.Now() // Round down to the nearest 5-minute boundary for clean naming. rounded := now.Truncate(5 * time.Minute)