From ce083573a9d9b09984068ac480953f7180b20884 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 6 Jun 2014 18:06:42 +0700 Subject: [PATCH] Fix typo --- src/routes/authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/authentication.js b/src/routes/authentication.js index 39b0a7f51a..c22134d176 100644 --- a/src/routes/authentication.js +++ b/src/routes/authentication.js @@ -150,7 +150,7 @@ })); app.get(strategy.callbackURL, passport.authenticate(strategy.name, { - successRedirect: nconf.get('relative_path) + '/', + successRedirect: nconf.get('relative_path') + '/', failureRedirect: nconf.get('relative_path') + '/login' })); }