mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-05 01:29:07 +00:00
Fix issue when login with wrong credentials. Fixes #1481
This commit is contained in:
parent
8222417c91
commit
cdf1b0ab72
@ -94,6 +94,7 @@ export class LoginComponent implements OnInit, DoCheck {
|
||||
}
|
||||
},
|
||||
(error) => {
|
||||
this.isRememberMe = false;
|
||||
this.loginError = true;
|
||||
}
|
||||
);
|
||||
|
@ -11,11 +11,12 @@ export class HttpRequestsInterceptor implements HttpInterceptor {
|
||||
intercept(httpRequest: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
|
||||
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);
|
||||
// }
|
||||
})
|
||||
);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user