1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Fix password resetting

Fixes https://github.com/vector-im/vector-web/issues/1349
This commit is contained in:
David Baker
2016-04-07 12:59:30 +01:00
parent b64604964d
commit a0c41e2d57

View File

@@ -38,8 +38,8 @@ module.exports = React.createClass({
getInitialState: function() { getInitialState: function() {
return { return {
enteredHomeserverUrl: this.props.homeserverUrl, enteredHomeserverUrl: this.props.customHsUrl || this.props.defaultHsUrl,
enteredIdentityServerUrl: this.props.identityServerUrl, enteredIdentityServerUrl: this.props.customIsUrl || this.props.defaultIsUrl,
progress: null progress: null
}; };
}, },