From 65bb33d1c782f7e04f57e11f53c3431509ffe6f6 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 21 Oct 2024 07:43:21 -0600 Subject: [PATCH] Catch case where object does not have thumbnail data --- frigate/object_processing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index 7ba3270f1..fab7bbc6c 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -344,6 +344,7 @@ class CameraState: # if the object's thumbnail is not from the current frame, skip if ( current_frame is None + or obj.thumbnail_data is None or obj.false_positive or obj.thumbnail_data["frame_time"] != frame_time ):