forked from mystiq/hydrogen-web
less http specific
This commit is contained in:
parent
3359c6950f
commit
a19e541e1e
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ export class SessionContainer {
|
|||
} catch (err) {
|
||||
this._error = err;
|
||||
if (err instanceof HomeServerError) {
|
||||
if (err.statusCode === 403) {
|
||||
if (err.errcode === "M_FORBIDDEN") {
|
||||
this._loginFailure = LoginFailure.Credentials;
|
||||
} else {
|
||||
this._loginFailure = LoginFailure.Unknown;
|
||||
|
|
Loading…
Reference in a new issue