From cdf1b0ab7262fa27a288a465e0891870dc212466 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sat, 15 Mar 2025 14:58:54 +0700 Subject: [PATCH] Fix issue when login with wrong credentials. Fixes #1481 --- src/app/components/login/login.component.ts | 1 + src/app/interceptors/http.interceptor.ts | 11 ++++++----- src/app/services/http-controller.service.ts | 6 +++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/app/components/login/login.component.ts b/src/app/components/login/login.component.ts index 33001597..fc03865d 100644 --- a/src/app/components/login/login.component.ts +++ b/src/app/components/login/login.component.ts @@ -94,6 +94,7 @@ export class LoginComponent implements OnInit, DoCheck { } }, (error) => { + this.isRememberMe = false; this.loginError = true; } ); diff --git a/src/app/interceptors/http.interceptor.ts b/src/app/interceptors/http.interceptor.ts index 7a7c4699..e934505c 100644 --- a/src/app/interceptors/http.interceptor.ts +++ b/src/app/interceptors/http.interceptor.ts @@ -11,11 +11,12 @@ export class HttpRequestsInterceptor implements HttpInterceptor { intercept(httpRequest: HttpRequest, next: HttpHandler): Observable> { return next.handle(httpRequest).pipe( catchError((err) => { - if (err.status === 401 || err.status === 403) { - this.call(); - } else { - return throwError(err); - } + return throwError(err); + // if (err.status === 401 || err.status === 403) { + // this.call(); + // } else { + // return throwError(err); + // } }) ); } diff --git a/src/app/services/http-controller.service.ts b/src/app/services/http-controller.service.ts index 7f495d74..0a4e05e8 100644 --- a/src/app/services/http-controller.service.ts +++ b/src/app/services/http-controller.service.ts @@ -89,9 +89,9 @@ export class ControllerErrorHandler { err = ControllerError.fromError('Controller is unreachable', error); } - if (error.status === 401) { - window.location.reload(); - } + //if (error.status === 401) { + // window.location.reload(); + //} return throwError(err); }