From f3e754595728f60633ab064ba8dabd601bca93f7 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Tue, 4 Aug 2026 07:37:37 +1000 Subject: [PATCH] PLG: UNFIMP set ip to null to prevent changes if not returned #1727 --- front/plugins/unifi_import/script.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/plugins/unifi_import/script.py b/front/plugins/unifi_import/script.py index d2a3886b..30e1f9ab 100755 --- a/front/plugins/unifi_import/script.py +++ b/front/plugins/unifi_import/script.py @@ -240,7 +240,7 @@ def get_ip(*ips: str) -> str: for ip in ips: if ip and ip != 'null': return ip - return '0.0.0.0' + return 'null' # -----------------------------------------------------------------------------