From 9ae0ddd0b8c87aec6f804ce4537fa07d87dc31b8 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sat, 15 Mar 2025 09:48:51 -0600 Subject: [PATCH] Fix bird sub label --- frigate/data_processing/real_time/bird.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frigate/data_processing/real_time/bird.py b/frigate/data_processing/real_time/bird.py index ba6d4f08c..ea181d6c3 100644 --- a/frigate/data_processing/real_time/bird.py +++ b/frigate/data_processing/real_time/bird.py @@ -144,7 +144,8 @@ class BirdRealTimeProcessor(RealTimeProcessorApi): return self.sub_label_publisher.publish( - EventMetadataTypeEnum.sub_label, (id, self.labelmap[best_id], score) + EventMetadataTypeEnum.sub_label, + (obj_data["id"], self.labelmap[best_id], score), ) self.detected_birds[obj_data["id"]] = score