We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a01413 + 57db98e commit db991ecCopy full SHA for db991ec
openid_connect.js
@@ -103,7 +103,7 @@ function auth(r) {
103
104
function codeExchange(r) {
105
// First check that we received an authorization code from the IdP
106
- if (r.variables.arg_code.length == 0) {
+ if (r.variables.arg_code == undefined || r.variables.arg_code.length == 0) {
107
if (r.variables.arg_error) {
108
r.error("OIDC error receiving authorization code from IdP: " + r.variables.arg_error_description);
109
} else {
0 commit comments