force usernames to be lowercase

This commit is contained in:
ansuz 2017-02-13 11:01:30 +01:00
parent 5614bea271
commit fbcf4ccec4
1 changed files with 3 additions and 0 deletions

View File

@ -70,6 +70,9 @@ define([
Exports.loginOrRegister = function (uname, passwd, isRegister, cb) {
if (typeof(cb) !== 'function') { return; }
// Usernames are all lowercase. No going back on this one
uname = uname.toLowerCase();
// validate inputs
if (!Cred.isValidUsername(uname)) { return void cb('INVAL_USER'); }
if (!Cred.isValidPassword(passwd)) { return void cb('INVAL_PASS'); }