From 55030c1655b78750ce3424b0004cc9500fea8f54 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 28 Feb 2024 21:04:44 -0700 Subject: [PATCH] Fix --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 14f8a952f..0bda412f6 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1384,7 +1384,7 @@ def end_event(event_id): @bp.route("/config") def config(): - config = current_app.frigate_config.dict() + config = current_app.frigate_config.model_dump() # remove the mqtt password config["mqtt"].pop("password", None)