mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
Don't clear field on failure
This commit is contained in:
parent
bc66545fd0
commit
10b19622db
@ -131,15 +131,18 @@ export default class SetIdServer extends React.Component {
|
||||
const fullUrl = unabbreviateUrl(this.state.idServer);
|
||||
|
||||
const errStr = await checkIsUrl(fullUrl);
|
||||
|
||||
let newFormValue = this.state.idServer;
|
||||
if (!errStr) {
|
||||
MatrixClientPeg.get().setIdentityServerUrl(fullUrl);
|
||||
localStorage.setItem("mx_is_url", fullUrl);
|
||||
newFormValue = '';
|
||||
}
|
||||
this.setState({
|
||||
busy: false,
|
||||
error: errStr,
|
||||
currentClientIdServer: MatrixClientPeg.get().getIdentityServerUrl(),
|
||||
idServer: '',
|
||||
idServer: newFormValue,
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user