forked from TrueCloudLab/lego
Fix dnsimple api (#529)
This commit is contained in:
parent
b2c4f3c84e
commit
5922ca9269
1 changed files with 1 additions and 1 deletions
|
@ -176,5 +176,5 @@ func (c *DNSProvider) getAccountID() (string, error) {
|
||||||
return "", fmt.Errorf("DNSimple user tokens are not supported, please use an account token.")
|
return "", fmt.Errorf("DNSimple user tokens are not supported, please use an account token.")
|
||||||
}
|
}
|
||||||
|
|
||||||
return strconv.Itoa(whoamiResponse.Data.Account.ID), nil
|
return strconv.FormatInt(whoamiResponse.Data.Account.ID, 10), nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue