Catch case where object does not have thumbnail data

This commit is contained in:
Nicolas Mowen 2024-10-21 07:43:21 -06:00
parent 8fcb8e54f7
commit 65bb33d1c7

View File

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