forked from TrueCloudLab/lego
Fix out of range
This commit is contained in:
parent
232fbbef08
commit
ec18c6e42f
1 changed files with 3 additions and 1 deletions
|
@ -101,7 +101,9 @@ func (j *jws) Nonce() (string, error) {
|
|||
if err != nil {
|
||||
return nonce, err
|
||||
}
|
||||
return "", errors.New("Can't get nonce")
|
||||
if len(j.nonces) == 0 {
|
||||
return "", errors.New("Can't get nonce")
|
||||
}
|
||||
}
|
||||
|
||||
nonce, j.nonces = j.nonces[len(j.nonces)-1], j.nonces[:len(j.nonces)-1]
|
||||
|
|
Loading…
Reference in a new issue