From 9a611a58e7cd33cd2ca7c713f07088668b9ed341 Mon Sep 17 00:00:00 2001 From: Rosanny <rosanny.sihombing@hft-stuttgart.de> Date: Thu, 19 Mar 2020 10:22:02 +0100 Subject: [PATCH] fix routing mistake --- routes/routes-account.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/routes-account.js b/routes/routes-account.js index 612dffa0..84ddbec3 100644 --- a/routes/routes-account.js +++ b/routes/routes-account.js @@ -253,7 +253,7 @@ module.exports = function (app, config, passport, i18n) { else { req.flash('success', 'Profile updated!'); } - res.redirect('lang+/account/profile'); + res.redirect('/profile'); }) } } else { @@ -292,7 +292,7 @@ module.exports = function (app, config, passport, i18n) { else { if ( newPwd != retypePwd ) { req.flash('error', "Passwords do no match. Please make sure you re-type your new password correctly.") - res.redirect(lang+'/account/security') + res.redirect('/security') } else { // update password -- GitLab