Oops, fix email check
This commit is contained in:
parent
8dc20606c8
commit
9def0bb5c2
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ module.exports = React.createClass({
|
||||||
let errorText;
|
let errorText;
|
||||||
|
|
||||||
// Some error strings only apply for logging in
|
// Some error strings only apply for logging in
|
||||||
const usingEmail = username.indexOf("@");
|
const usingEmail = username.indexOf("@") > 0;
|
||||||
if (error.httpStatus == 400 && usingEmail) {
|
if (error.httpStatus == 400 && usingEmail) {
|
||||||
errorText = _t('This Home Server does not support login using email address.');
|
errorText = _t('This Home Server does not support login using email address.');
|
||||||
} else if (error.httpStatus == 401 || error.httpStatus === 403) {
|
} else if (error.httpStatus == 401 || error.httpStatus === 403) {
|
||||||
|
|
Loading…
Reference in a new issue