mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 12:16:53 +02:00
Oops, fix email check
This commit is contained in:
parent
8dc20606c8
commit
9def0bb5c2
@ -90,7 +90,7 @@ module.exports = React.createClass({
|
||||
let errorText;
|
||||
|
||||
// Some error strings only apply for logging in
|
||||
const usingEmail = username.indexOf("@");
|
||||
const usingEmail = username.indexOf("@") > 0;
|
||||
if (error.httpStatus == 400 && usingEmail) {
|
||||
errorText = _t('This Home Server does not support login using email address.');
|
||||
} else if (error.httpStatus == 401 || error.httpStatus === 403) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user