mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-12-16 21:58:50 +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 {
|
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)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue