From 7c0e5a8f17e798760a3eafb6225c19b5754af5ee Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 6 Apr 2026 17:17:36 -0500 Subject: [PATCH] update dispatcher config reference on save --- frigate/api/app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frigate/api/app.py b/frigate/api/app.py index af6778451..57d1f0a79 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -694,6 +694,9 @@ def config_set(request: Request, body: AppConfigSetBody): if request.app.stats_emitter is not None: request.app.stats_emitter.config = config + if request.app.dispatcher is not None: + request.app.dispatcher.config = config + if body.update_topic: if body.update_topic.startswith("config/cameras/"): _, _, camera, field = body.update_topic.split("/")