From c07ac244640aa23cbe44e0cf5fd3536f8a7ab6fc Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 5 Oct 2023 06:23:19 -0600 Subject: [PATCH] Formatting --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 013a230a5..a009a6afe 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1281,7 +1281,7 @@ def get_snapshot_from_recording(camera_name: str, frame_time: str): ) .where( ( - (frame_time >= Recordings.start_time) + (frame_time >= Recordings.start_time) & (frame_time <= Recordings.end_time) ) )