mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-25 08:02:58 +08:00
BUG: Punycode ignorant of AAAA records.
This commit is contained in:
parent
b89f9c66d1
commit
9b01ed9eb3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue