hopefully fix NPE on toLowerCase
This commit is contained in:
parent
063ab7e9b7
commit
672fbb2873
1 changed files with 3 additions and 1 deletions
|
@ -303,7 +303,9 @@ module.exports = React.createClass({
|
||||||
} : {};
|
} : {};
|
||||||
|
|
||||||
return this._matrixClient.register(
|
return this._matrixClient.register(
|
||||||
this.state.formVals.username.toLowerCase(),
|
(this.state.formVals.username ?
|
||||||
|
this.state.formVals.username.toLowerCase() :
|
||||||
|
this.state.formVals.username),
|
||||||
this.state.formVals.password,
|
this.state.formVals.password,
|
||||||
undefined, // session id: included in the auth dict already
|
undefined, // session id: included in the auth dict already
|
||||||
auth,
|
auth,
|
||||||
|
|
Loading…
Reference in a new issue