mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-27 06:52:35 -04:00
[user] normalise email also for changing
This commit is contained in:
parent
4125a1b7c3
commit
8428ee8e46
@ -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' })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user