fix: force lowercase for email on local auth

This commit is contained in:
NGPixel
2020-09-09 19:59:46 -04:00
parent 5295e413be
commit aa96e97028
4 changed files with 16 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ module.exports = {
}, async (uEmail, uPassword, done) => {
try {
const user = await WIKI.models.users.query().findOne({
email: uEmail,
email: uEmail.toLowerCase(),
providerKey: 'local'
})
if (user) {