KEYCLOAK-8619 Fix check-sso when there is no cookie
This commit is contained in:
parent
6450a457d0
commit
1ee6fd7130
1 changed files with 9 additions and 1 deletions
|
@ -52,7 +52,15 @@
|
|||
clientId: clientId,
|
||||
origin: origin
|
||||
}
|
||||
checkCookie();
|
||||
if (!cookie) {
|
||||
if (sessionState != '') {
|
||||
callback('changed');
|
||||
} else {
|
||||
callback('unchanged');
|
||||
}
|
||||
} else {
|
||||
checkCookie();
|
||||
}
|
||||
} else {
|
||||
callback('error');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue