force usernames to be lowercase
This commit is contained in:
parent
5614bea271
commit
fbcf4ccec4
@ -70,6 +70,9 @@ define([
|
|||||||
Exports.loginOrRegister = function (uname, passwd, isRegister, cb) {
|
Exports.loginOrRegister = function (uname, passwd, isRegister, cb) {
|
||||||
if (typeof(cb) !== 'function') { return; }
|
if (typeof(cb) !== 'function') { return; }
|
||||||
|
|
||||||
|
// Usernames are all lowercase. No going back on this one
|
||||||
|
uname = uname.toLowerCase();
|
||||||
|
|
||||||
// validate inputs
|
// validate inputs
|
||||||
if (!Cred.isValidUsername(uname)) { return void cb('INVAL_USER'); }
|
if (!Cred.isValidUsername(uname)) { return void cb('INVAL_USER'); }
|
||||||
if (!Cred.isValidPassword(passwd)) { return void cb('INVAL_PASS'); }
|
if (!Cred.isValidPassword(passwd)) { return void cb('INVAL_PASS'); }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user