Merge pull request #1729 from netalertx/next_release

PLG: UNFIMP set ip to null to prevent changes if not returned #1727
This commit is contained in:
Jokob @NetAlertX authored and GitHub committed 2026-08-04 23:41:56 +00:00
commit 4e6110ac6c
1 file changed
+1 -1
+1 -1
View File
@@ -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'
# -----------------------------------------------------------------------------