Skip to content

Commit

Permalink
Merge pull request #194 from anjuchamantha/3.0.0
Browse files Browse the repository at this point in the history
Fix tokens not revoking issue
  • Loading branch information
Akila94 authored Nov 13, 2024
2 parents 5bc1f40 + a5c35c8 commit e7f25b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2584,7 +2584,7 @@ public void revokeTokens(DetailedConsentResource detailedConsentResource, String
// Filter tokens by consent ID claim
if (Arrays.asList(accessTokenDO.getScope()).contains(consentIdClaim +
detailedConsentResource.getConsentID())) {
activeTokens.add(accessTokenDO.getAccessToken());
activeTokens.add(accessTokenDO.getRefreshToken());
}
}

Expand Down

0 comments on commit e7f25b8

Please sign in to comment.