mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-12-11 06:35:51 +08:00
fix unused params in: providers/dnsmadeeasy
This commit is contained in:
parent
454f59f3d6
commit
4059ef1572
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ func toRecordConfig(domain string, record *recordResponseDataEntry) *models.Reco
|
||||||
} else if record.Type == "CAA" {
|
} else if record.Type == "CAA" {
|
||||||
value, unquoteErr := strconv.Unquote(record.Value)
|
value, unquoteErr := strconv.Unquote(record.Value)
|
||||||
if unquoteErr != nil {
|
if unquoteErr != nil {
|
||||||
panic(err)
|
panic(unquoteErr)
|
||||||
}
|
}
|
||||||
err = rc.SetTargetCAA(uint8(record.IssuerCritical), record.CaaType, value)
|
err = rc.SetTargetCAA(uint8(record.IssuerCritical), record.CaaType, value)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue