From b79b1d9443fc0e27390bf54358bccb4da424b6e1 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 29 Jul 2023 06:11:45 -0600 Subject: [PATCH] Fix frame not in cache error (#7313) --- 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 a818637f1..fbfff998b 100644 --- a/frigate/object_processing.py +++ b/frigate/object_processing.py @@ -169,7 +169,7 @@ class TrackedObject: self.camera_config.frame_shape, ): self.thumbnail_data = { - "frame_time": obj_data["frame_time"], + "frame_time": current_frame_time, "box": obj_data["box"], "area": obj_data["area"], "region": obj_data["region"],