[user] normalise email also for changing

This commit is contained in:
Avris 2021-09-09 19:58:45 +02:00
parent 84ee800876
commit dfd9fb9ed9
1 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@ const issueAuthentication = async (db, user) => {
}
const validateEmail = async (email) => {
email = String(email).toLowerCase();
email = normalise(String(email));
if (email.endsWith('.oauth')) {
return;
}
@ -306,7 +306,7 @@ router.post('/user/change-email', handleErrorAsync(async (req, res) => {
return res.status(401).json({error: 'Unauthorised'});
}
if (!await validateEmail(req.user.email)) {
if (!await validateEmail(normalise(req.user.email))) {
return res.json({ error: 'user.account.changeEmail.invalid' })
}