diff --git a/src/controllers/authentication.js b/src/controllers/authentication.js index 1c3e1b4ab0..2ce06ca683 100644 --- a/src/controllers/authentication.js +++ b/src/controllers/authentication.js @@ -224,6 +224,7 @@ authenticationController.login = function (req, res, next) { } var loginWith = meta.config.allowLoginWith || 'username-email'; + req.body.username = req.body.username.trim(); if (req.body.username && utils.isEmailValid(req.body.username) && loginWith.includes('email')) { async.waterfall([