Fix logic

This commit is contained in:
Nicolas Mowen 2024-09-09 08:14:23 -06:00
parent a37beea6d1
commit 483a02e593

View File

@ -773,7 +773,7 @@ class CameraState:
# if we don't have access to the current frame or # if we don't have access to the current frame or
# if the object's thumbnail is not from the current frame, skip # if the object's thumbnail is not from the current frame, skip
if ( if (
not current_frame current_frame is None
or obj.false_positive or obj.false_positive
or obj.thumbnail_data["frame_time"] != frame_time or obj.thumbnail_data["frame_time"] != frame_time
): ):