KEYCLOAK-4568 Identity broker service may fail to validate client session if there is more then one active session
This commit is contained in:
parent
282896b653
commit
063f5303dd
1 changed files with 1 additions and 1 deletions
|
@ -257,8 +257,8 @@ public class IdentityBrokerService implements IdentityProvider.AuthenticationCal
|
|||
byte[] check = md.digest(input.getBytes(StandardCharsets.UTF_8));
|
||||
if (MessageDigest.isEqual(decoded, check)) {
|
||||
clientSession = cs;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (clientSession == null) {
|
||||
|
|
Loading…
Reference in a new issue