We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54da0fc commit 3b8b2e9Copy full SHA for 3b8b2e9
models/jwt/JwtService.cfc
@@ -400,7 +400,7 @@ component accessors="true" singleton {
400
}
401
402
// Verify that this token has not been invalidated in the storage?
403
- if ( !getTokenStorage().exists( decodedToken.jti ) && variables.settings.jwt.tokenStorage.enabled ) {
+ if ( variables.settings.jwt.tokenStorage.enabled && !getTokenStorage().exists( decodedToken.jti ) ) {
404
if ( variables.log.canWarn() ) {
405
variables.log.warn( "Token rejected, it was not found in token storage", decodedToken );
406
0 commit comments