Fix out of range

This commit is contained in:
Rekby 2016-04-10 16:06:49 +03:00
parent 232fbbef08
commit ec18c6e42f

View file

@ -101,8 +101,10 @@ func (j *jws) Nonce() (string, error) {
if err != nil {
return nonce, err
}
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]
return nonce, nil