mirror of
https://github.com/go-acme/lego.git
synced 2025-01-18 12:30:36 +02:00
fix: nil pointer on error handling. (#1291)
This commit is contained in:
parent
b04d00b8fe
commit
3158518511
@ -183,7 +183,7 @@ func (d *DNSProvider) Present(domain, token, keyAuth string) error {
|
||||
rset, err := rsc.Get(ctx, d.config.ResourceGroup, zone, relative, dns.TXT)
|
||||
if err != nil {
|
||||
var detailed *autorest.DetailedError
|
||||
if !errors.As(err, detailed) || detailed.StatusCode != http.StatusNotFound {
|
||||
if !errors.As(err, &detailed) || detailed.StatusCode != http.StatusNotFound {
|
||||
return fmt.Errorf("azure: %w", err)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user