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

fix unused params in: providers/dnsmadeeasy

This commit is contained in:
Tom Limoncelli
2024-03-04 10:25:48 -05:00
parent 454f59f3d6
commit 4059ef1572

View File

@@ -140,7 +140,7 @@ func toRecordConfig(domain string, record *recordResponseDataEntry) *models.Reco
} else if record.Type == "CAA" {
value, unquoteErr := strconv.Unquote(record.Value)
if unquoteErr != nil {
panic(err)
panic(unquoteErr)
}
err = rc.SetTargetCAA(uint8(record.IssuerCritical), record.CaaType, value)
} else {