diff --git a/frigate/comms/mqtt.py b/frigate/comms/mqtt.py index 68578ad17..a1ad35ba5 100644 --- a/frigate/comms/mqtt.py +++ b/frigate/comms/mqtt.py @@ -105,12 +105,12 @@ class MqttClient(Communicator): # type: ignore[misc] retain=True, ) self.publish( - f"{camera_name}/review/alerts/state", + f"{camera_name}/review_alerts/state", "ON" if camera.review.alerts.enabled_in_config else "OFF", retain=True, ) self.publish( - f"{camera_name}/review/detections/state", + f"{camera_name}/review_detections/state", "ON" if camera.review.detections.enabled_in_config else "OFF", retain=True, )