From 894707a87c609e4b4594c3629a795494c5bfef1e Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Tue, 11 Aug 2026 10:11:44 -0500 Subject: [PATCH] Correctly escape DDNS placeholder in Nix string --- modules/core/njalla.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/njalla.nix b/modules/core/njalla.nix index 4c86031..251ac9d 100644 --- a/modules/core/njalla.nix +++ b/modules/core/njalla.nix @@ -76,7 +76,7 @@ except Exception: import urllib.parse for raw_url in urls: try: - url = raw_url.replace("\${IP}", public_ip) if public_ip else raw_url + url = raw_url.replace("''${IP}", public_ip) if public_ip else raw_url parsed = urllib.parse.urlparse(url) if parsed.scheme.lower() != "https": continue