Logout will not redirect to /login (#4420)

This commit is contained in:
Ylian Saint-Hilaire 2022-08-21 00:41:17 -07:00
parent 93efc2e6a0
commit 8d1eab20e5
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
}
// This is the default logout redirect to the login page
if (req.query.key != null) { res.redirect(domain.url + '?key=' + req.query.key); } else { res.redirect(domain.url); }
if (req.query.key != null) { res.redirect(domain.url + 'login?key=' + req.query.key); } else { res.redirect(domain.url + 'login'); }
}
// Return an object with 2FA type if 2-step auth can be skipped