Skip to content

Commit

Permalink
OAuthClientBase now returns the correct RequestingCode instead of abo…
Browse files Browse the repository at this point in the history
…rting the thread (#3152)
  • Loading branch information
SkyeHoefling authored and mitchelsellers committed Oct 20, 2019
1 parent 966a0d6 commit d0be7a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private AuthorisationResult AuthorizeV2()
new QueryParameter("response_type", "code")
};

HttpContext.Current.Response.Redirect(AuthorizationEndpoint + "?" + parameters.ToNormalizedString(), true);
HttpContext.Current.Response.Redirect(AuthorizationEndpoint + "?" + parameters.ToNormalizedString(), false);
return AuthorisationResult.RequestingCode;
}

Expand Down

0 comments on commit d0be7a3

Please sign in to comment.