From ebb011515aababc2e46d5ad4872bbf66552d47a3 Mon Sep 17 00:00:00 2001 From: Liosha Date: Tue, 26 May 2026 17:15:44 +0300 Subject: [PATCH] caddy lables --- jambotron-ui/src/app/helpers/custom-http-interceptor.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/jambotron-ui/src/app/helpers/custom-http-interceptor.ts b/jambotron-ui/src/app/helpers/custom-http-interceptor.ts index 04222ec..8a8a682 100644 --- a/jambotron-ui/src/app/helpers/custom-http-interceptor.ts +++ b/jambotron-ui/src/app/helpers/custom-http-interceptor.ts @@ -15,11 +15,9 @@ export class CustomHttpInterceptor implements HttpInterceptor { return next.handle(req) .pipe(tap((event: HttpEvent) => { if (event instanceof HttpResponse) { + console.log('Interceptor увидел ответ:', event.url, 'status:', event.status, 'ok:', event.ok); this.spinnerService.hide(); } - }, (error) => { - this.spinnerService.hide(); })) - ; } }