mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Handle THREEPID_IN_USE error
This commit is contained in:
parent
69ac0bd368
commit
259d9dc3a2
@ -242,10 +242,14 @@ module.exports = {
|
|||||||
});
|
});
|
||||||
self.setStep('stage_m.login.email.identity');
|
self.setStep('stage_m.login.email.identity');
|
||||||
}, function(error) {
|
}, function(error) {
|
||||||
self.setState({
|
self.setStep('initial');
|
||||||
busy: false,
|
var newState = {busy: false};
|
||||||
errorText: 'Unable to contact the given Home Server'
|
if (error.errcode == 'THREEPID_IN_USE') {
|
||||||
});
|
self.onBadFields({email: self.FieldErrors.InUse});
|
||||||
|
} else {
|
||||||
|
newState.errorText = 'Unable to contact the given Home Server';
|
||||||
|
}
|
||||||
|
self.setState(newState);
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'm.login.recaptcha':
|
case 'm.login.recaptcha':
|
||||||
|
Loading…
Reference in New Issue
Block a user