From 5e53c48b046879492041506cb495e61cbd5df97c Mon Sep 17 00:00:00 2001 From: Robert Blenkinsopp Date: Thu, 23 Mar 2023 16:37:19 +0000 Subject: [PATCH] HEDNS: Fix support for LOC records (#2216) Co-authored-by: Tom Limoncelli --- providers/hedns/hednsProvider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/hedns/hednsProvider.go b/providers/hedns/hednsProvider.go index e606699d5..e55ef137a 100644 --- a/providers/hedns/hednsProvider.go +++ b/providers/hedns/hednsProvider.go @@ -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 }