1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

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

View File

@ -361,7 +361,7 @@ func (c *hednsProvider) GetZoneRecords(domain string) (models.Records, error) {
} }
// Ignore record types that dnscontrol does not support // 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 return true
} }