mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
Log in to the right homeserver when changing the homeserver
This commit is contained in:
parent
58b9eb4cb2
commit
eab209a26b
@ -121,6 +121,14 @@ module.exports = React.createClass({
|
|||||||
this._unmounted = true;
|
this._unmounted = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
componentWillReceiveProps(newProps) {
|
||||||
|
if (newProps.serverConfig.hsUrl === this.props.serverConfig.hsUrl &&
|
||||||
|
newProps.serverConfig.isUrl === this.props.serverConfig.isUrl) return;
|
||||||
|
|
||||||
|
// Ensure that we end up actually logging in to the right place
|
||||||
|
this._initLoginLogic(newProps.serverConfig.hsUrl, newProps.serverConfig.isUrl);
|
||||||
|
},
|
||||||
|
|
||||||
onPasswordLoginError: function(errorText) {
|
onPasswordLoginError: function(errorText) {
|
||||||
this.setState({
|
this.setState({
|
||||||
errorText,
|
errorText,
|
||||||
|
Loading…
Reference in New Issue
Block a user