Lowercase all usernames

As synapse doesn't accept usernames with capitals in them now

Fixes https://github.com/vector-im/riot-web/issues/5445
pull/21833/head
David Baker 2017-10-27 17:49:44 +01:00
parent b421fd05ef
commit 4eb8fe3e6a
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ module.exports = React.createClass({
} : {};
return this._matrixClient.register(
this.state.formVals.username,
this.state.formVals.username.toLowerCase(),
this.state.formVals.password,
undefined, // session id: included in the auth dict already
auth,