fix: #11554, email requirement bypass by sending in whitespace

isekai-main
Julian Lam 2 years ago
parent b3787bd50c
commit 2b8dd3d202

@ -46,6 +46,10 @@ Interstitials.email = async (data) => {
issuePasswordChallenge: !!data.userData.uid && hasPassword,
},
callback: async (userData, formData) => {
if (formData.email) {
formData.email = String(formData.email).trim();
}
// Validate and send email confirmation
if (userData.uid) {
const isSelf = parseInt(userData.uid, 10) === parseInt(data.req.uid, 10);

Loading…
Cancel
Save