Let user know their account has been deactivated upon trying to login
This commit is contained in:
parent
793b91be5b
commit
7a5167b1a3
2 changed files with 4 additions and 1 deletions
|
@ -217,7 +217,9 @@ module.exports = React.createClass({
|
|||
</div>
|
||||
);
|
||||
} else if (error.httpStatus === 401 || error.httpStatus === 403) {
|
||||
if (SdkConfig.get()['disable_custom_urls']) {
|
||||
if (error.errcode === 'M_USER_DEACTIVATED') {
|
||||
errorText = _t('This account has been deactivated.');
|
||||
} else if (SdkConfig.get()['disable_custom_urls']) {
|
||||
errorText = (
|
||||
<div>
|
||||
<div>{ _t('Incorrect username and/or password.') }</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue