mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Formatting
This commit is contained in:
parent
bc0eb4294c
commit
ec9a436625
1 changed files with 2 additions and 4 deletions
|
@ -161,8 +161,7 @@ export default class Login {
|
|||
error.friendlyText = (
|
||||
_t('This Home Server does not support login using email address.')
|
||||
);
|
||||
}
|
||||
else if (error.httpStatus === 403) {
|
||||
} else if (error.httpStatus === 403) {
|
||||
error.friendlyText = (
|
||||
_t('Incorrect username and/or password.')
|
||||
);
|
||||
|
@ -185,8 +184,7 @@ export default class Login {
|
|||
throw error;
|
||||
});
|
||||
}
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
error.friendlyText = (
|
||||
_t("There was a problem logging in.") + ' (HTTP ' + error.httpStatus + ")"
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue