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 {
return err
}
case "A", "CAA":
case "A", "AAAA", "CAA", "TXT":
// Nothing to do.
default:
msg := fmt.Sprintf("Punycode rtype %v unimplemented", rec.Type)