From da635749ba1056c91ce2a04caec334c86aa078fb Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 15 Jul 2026 07:18:03 -0500 Subject: [PATCH] clarify config/set endpoint response message this legacy message is not consumed anywhere by the frontend so this change is just to avoid user confusion --- frigate/api/app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frigate/api/app.py b/frigate/api/app.py index ac839158e2..49b555606d 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -971,7 +971,11 @@ def config_set(request: Request, body: AppConfigSetBody): content=( { "success": True, - "message": "Config successfully updated, restart to apply", + "message": ( + "Config successfully updated" + if body.requires_restart == 0 + else "Config successfully updated, restart to apply" + ), } ), status_code=200,