From b26033d6a01b2b0f95b3a3d2ef44ef7cf58f144c Mon Sep 17 00:00:00 2001
From: Lyle Keeton <lyle@effectivesolutions.dev>
Date: Wed, 26 Mar 2025 20:16:29 -0500
Subject: [PATCH] Fix missing PUBLIC_IPV6

---
 management/web_update.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/management/web_update.py b/management/web_update.py
index c31fe8fc..e97bc60d 100644
--- a/management/web_update.py
+++ b/management/web_update.py
@@ -52,7 +52,7 @@ def get_domains_with_a_records(env):
 	domains = set()
 	dns = get_custom_dns_config(env)
 	for domain, rtype, value in dns:
-		if rtype == "CNAME" or (rtype in {"A", "AAAA"} and value not in {"local", env['PUBLIC_IP']}):
+		if rtype == "CNAME" or (rtype in {"A", "AAAA"} and value not in {"local", env['PUBLIC_IP'], env['PUBLIC_IPV6']}):
 			domains.add(domain)
 	return domains