[user] normalise email also for changing

This commit is contained in:
Andrea Vos 2021-09-09 19:58:45 +02:00
parent 4125a1b7c3
commit 8428ee8e46

View File

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