HEDNS: Fix support for LOC records (#2216)

Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
This commit is contained in:
Robert Blenkinsopp 2023-03-23 16:37:19 +00:00 committed by GitHub
parent b01453eb16
commit 5e53c48b04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
}