Skip to content

Commit 1913e1a

Browse files
committed
SessionMonitor should not require sid ID Token claim DuendeArchive#654
1 parent 1896c91 commit 1913e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UserManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export class UserManager extends OidcClient {
216216
return this.processSigninResponse(navResponse.url).then(signinResponse => {
217217
Log.debug("UserManager.querySessionStatus: got signin response");
218218

219-
if (signinResponse.session_state && signinResponse.profile.sub && signinResponse.profile.sid) {
219+
if (signinResponse.session_state && signinResponse.profile.sub) {
220220
Log.info("UserManager.querySessionStatus: querySessionStatus success for sub: ", signinResponse.profile.sub);
221221
return {
222222
session_state: signinResponse.session_state,

0 commit comments

Comments
 (0)