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,8 +101,10 @@ func (j *jws) Nonce() (string, error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nonce, err
|
return nonce, err
|
||||||
}
|
}
|
||||||
|
if len(j.nonces) == 0 {
|
||||||
return "", errors.New("Can't get nonce")
|
return "", errors.New("Can't get nonce")
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
nonce, j.nonces = j.nonces[len(j.nonces)-1], j.nonces[:len(j.nonces)-1]
|
nonce, j.nonces = j.nonces[len(j.nonces)-1], j.nonces[:len(j.nonces)-1]
|
||||||
return nonce, nil
|
return nonce, nil
|
||||||
|
|
Loading…
Reference in a new issue