mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-06 21:24:18 +08:00
HEDNS: Fix support for LOC records (#2216)
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
parent
b01453eb16
commit
5e53c48b04
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ func (c *hednsProvider) GetZoneRecords(domain string) (models.Records, error) {
|
|||
}
|
||||
|
||||
// Ignore record types that dnscontrol does not support
|
||||
if rc.Type == "HINFO" || rc.Type == "AFSDB" || rc.Type == "RP" || rc.Type == "LOC" {
|
||||
if rc.Type == "HINFO" || rc.Type == "AFSDB" || rc.Type == "RP" {
|
||||
return true
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue