diff --git a/validator.go b/validator.go index 1624640c..01d51c79 100644 --- a/validator.go +++ b/validator.go @@ -122,7 +122,7 @@ func (v *Validator) Validate(claims Claims) error { // Check issued-at if the option is enabled if v.verifyIat { - if err = v.verifyIssuedAt(claims, now, false); err != nil { + if err = v.verifyIssuedAt(claims, now, true); err != nil { errs = append(errs, err) } }