Skip to content

Commit

Permalink
BOX-122 - Resolve
Browse files Browse the repository at this point in the history
Fixed an issue with the use of arguments scope due to refactor to member `.each` method
  • Loading branch information
jclausen authored Aug 10, 2024
1 parent d9611f5 commit 21edd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/jwt/JwtService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ component accessors="true" singleton threadsafe {
// Announce the invalid claims
variables.interceptorService.announce(
"cbSecurity_onJWTInvalidClaims",
{ token : arguments.token, payload : decodedToken }
{ token : token, payload : decodedToken }
);

throw(
Expand Down

0 comments on commit 21edd85

Please sign in to comment.