hopefully fix NPE on toLowerCase

This commit is contained in:
Matthew Hodgson 2017-10-28 18:33:38 +01:00
parent 063ab7e9b7
commit 672fbb2873

View file

@ -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,