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