Skip to content

Commit

Permalink
Update auth.js
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpatrick authored and joshcanhelp committed Nov 19, 2019
1 parent 1d51985 commit 66d02df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ module.exports = function (params) {
callbackMethod = 'get';
}

router[callbackMethod](config.redirectUriPath, async (req, res, next) => {
router[callbackMethod](config.redirectUriPath, express.urlencoded({ extended: false }), async (req, res, next) => {
next = cb(next).once();
try {
const { nonce, state } = req.session;
Expand Down

0 comments on commit 66d02df

Please sign in to comment.