diff --git a/frigate/http.py b/frigate/http.py index acb2eaf12..b60fbe1b3 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1280,7 +1280,7 @@ def get_snapshot_from_recording(camera_name: str, frame_time: str): Recordings.start_time, ) .where( - ((frame_time > Recordings.start_time) & (frame_time < Recordings.end_time)) + ((frame_time >= Recordings.start_time) & (frame_time <= Recordings.end_time)) ) .where(Recordings.camera == camera_name) )