From 0c7acdf09e07a3da8aa9ee8bc2fa0fed104c3d69 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 25 Aug 2025 13:13:59 -0500 Subject: [PATCH] correctly publish full array of audio detections in onConnect --- frigate/comms/dispatcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/comms/dispatcher.py b/frigate/comms/dispatcher.py index fde9acd6d..235693c8c 100644 --- a/frigate/comms/dispatcher.py +++ b/frigate/comms/dispatcher.py @@ -244,7 +244,7 @@ class Dispatcher: json.dumps(self.embeddings_reindex.copy()), ) self.publish("birdseye_layout", json.dumps(self.birdseye_layout.copy())) - self.publish("audio_detections", json.dumps(audio_detections[camera])) + self.publish("audio_detections", json.dumps(audio_detections)) def handle_notification_test() -> None: self.publish("notification_test", "Test notification")