From c1dfdf57db4bc94acafa4fe4fe291b44a331010e Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Thu, 19 Mar 2026 10:04:39 -0500 Subject: [PATCH] add camera config updater topic for live section to support adding go2rtc streams after configuring a new one via the UI --- frigate/config/camera/updater.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frigate/config/camera/updater.py b/frigate/config/camera/updater.py index 2616312124..a55f355fb9 100644 --- a/frigate/config/camera/updater.py +++ b/frigate/config/camera/updater.py @@ -18,6 +18,7 @@ class CameraConfigUpdateEnum(str, Enum): detect = "detect" enabled = "enabled" ffmpeg = "ffmpeg" + live = "live" motion = "motion" # includes motion and motion masks notifications = "notifications" objects = "objects" @@ -107,6 +108,8 @@ class CameraConfigUpdateSubscriber: config.enabled = updated_config elif update_type == CameraConfigUpdateEnum.object_genai: config.objects.genai = updated_config + elif update_type == CameraConfigUpdateEnum.live: + config.live = updated_config elif update_type == CameraConfigUpdateEnum.motion: config.motion = updated_config elif update_type == CameraConfigUpdateEnum.notifications: