forked from TrueCloudLab/lego
Fix: DNSimple passes not-a-FQDN string to FindZoneByFqdn()
This commit is contained in:
parent
094e3d41bb
commit
65321943ba
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ func (c *DNSProvider) getHostedZone(domain string) (string, string, error) {
|
|||
return "", "", fmt.Errorf("DNSimple API call failed: %v", err)
|
||||
}
|
||||
|
||||
authZone, err := acme.FindZoneByFqdn(domain, acme.RecursiveNameservers)
|
||||
authZone, err := acme.FindZoneByFqdn(acme.ToFqdn(domain), acme.RecursiveNameservers)
|
||||
if err != nil {
|
||||
return "", "", err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue