From a86bf95d3b9ba6bb9ee6293523c2c28929bec209 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 28 Apr 2025 21:33:09 -0500 Subject: [PATCH] make migrated movement weight a zero --- frigate/util/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/util/config.py b/frigate/util/config.py index 0bfafe5c55..59d704b9eb 100644 --- a/frigate/util/config.py +++ b/frigate/util/config.py @@ -330,7 +330,7 @@ def migrate_016_0(config: dict[str, dict[str, any]]) -> dict[str, dict[str, any] if movement_weights and len(movement_weights.split(",")) == 5: onvif_config["autotracking"]["movement_weights"] = ( - movement_weights + ", 1" + movement_weights + ", 0" ) camera_config["onvif"] = onvif_config