Skip to content

Commit e8601a8

Browse files
committed
allow response_type to be passed to querySessionStatus
1 parent 1443996 commit e8601a8

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
@@ -205,7 +205,7 @@ export class UserManager extends OidcClient {
205205

206206
args.redirect_uri = url;
207207
args.prompt = "none";
208-
args.response_type = this.settings.query_status_response_type;
208+
args.response_type = args.response_type || this.settings.query_status_response_type;
209209
args.scope = "openid";
210210

211211
return this._signinStart(args, this._iframeNavigator, {

0 commit comments

Comments
 (0)