do not fail with wildcard PTRs

This commit is contained in:
Tom Hetmer 2020-09-10 01:18:07 +07:00 committed by GitHub
parent 4e63f8380b
commit cf62658e19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ def domain(domain_name):
# If it is reverse zone and pretty_ipv6_ptr setting # If it is reverse zone and pretty_ipv6_ptr setting
# is enabled, we reformat the name for ipv6 records. # is enabled, we reformat the name for ipv6 records.
if Setting().get('pretty_ipv6_ptr') and r[ if Setting().get('pretty_ipv6_ptr') and r[
'type'] == 'PTR' and 'ip6.arpa' in r_name: 'type'] == 'PTR' and 'ip6.arpa' in r_name and '*' not in r_name:
r_name = dns.reversename.to_address( r_name = dns.reversename.to_address(
dns.name.from_text(r_name)) dns.name.from_text(r_name))