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) ) )