1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

BUG: Punycode ignorant of AAAA records.

This commit is contained in:
Tom Limoncelli
2017-08-05 12:15:20 -04:00
parent b89f9c66d1
commit 9b01ed9eb3

View File

@ -282,7 +282,7 @@ func (dc *DomainConfig) Punycode() error {
if err != nil { if err != nil {
return err return err
} }
case "A", "CAA": case "A", "AAAA", "CAA", "TXT":
// Nothing to do. // Nothing to do.
default: default:
msg := fmt.Sprintf("Punycode rtype %v unimplemented", rec.Type) msg := fmt.Sprintf("Punycode rtype %v unimplemented", rec.Type)