Skip to content

Commit f4a10e9

Browse files
author
Josh Eckhoff
committed
Remove the check for signinResponse.profile.sid as not all Providers support the OpenID Connect Front-Channel Logout Spec (https://openid.net/specs/openid-connect-frontchannel-1_0.html)
1 parent ce5dea0 commit f4a10e9

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
@@ -215,7 +215,7 @@ export class UserManager extends OidcClient {
215215
return this.processSigninResponse(navResponse.url).then(signinResponse => {
216216
Log.debug("UserManager.querySessionStatus: got signin response");
217217

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

0 commit comments

Comments
 (0)