From 483a02e5934d34e651d69221a81a5281448bba80 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 9 Sep 2024 08:14:23 -0600 Subject: [PATCH] Fix logic --- frigate/object_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/object_processing.py b/frigate/object_processing.py index 829b43eb9..330ba0e24 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -773,7 +773,7 @@ class CameraState: # if we don't have access to the current frame or # if the object's thumbnail is not from the current frame, skip if ( - not current_frame + current_frame is None or obj.false_positive or obj.thumbnail_data["frame_time"] != frame_time ):