From 43ae6fa0df440f2c13603552c125e3e85ee31756 Mon Sep 17 00:00:00 2001 From: leccelecce <24962424+leccelecce@users.noreply.github.com> Date: Thu, 19 Mar 2026 07:24:45 +0000 Subject: [PATCH] Publish "stopped" to available topic on app stop --- frigate/comms/mqtt.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/comms/mqtt.py b/frigate/comms/mqtt.py index 9279b4388..fa31de9c0 100644 --- a/frigate/comms/mqtt.py +++ b/frigate/comms/mqtt.py @@ -38,6 +38,7 @@ class MqttClient(Communicator): ) def stop(self) -> None: + self.publish("available", "stopped", retain=True) self.client.disconnect() def _set_initial_topics(self) -> None: