From a28c3e6bd3057de4b874e716918a3a6100d44a92 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Sat, 23 May 2026 04:33:38 -0400 Subject: [PATCH] Development --- routlin/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routlin/status.py b/routlin/status.py index c00403c..d2f95c5 100644 --- a/routlin/status.py +++ b/routlin/status.py @@ -173,7 +173,7 @@ def check_services(data): has_ddns = any(p.get("enabled") for p in data.get("ddns", {}).get("providers", [])) exp_ddns_active = "active" if has_ddns else "inactive" - exp_ddns_enabled = "enabled" if has_ddns else "disabled" + exp_ddns_enabled = "enabled" if has_ddns else "not-found" units.append({"id": f"{DDNS_TIMER_NAME}.timer", "name": f"{DDNS_TIMER_NAME}.timer", "expected_active": exp_ddns_active, "expected_enabled": exp_ddns_enabled})