@trudb/tru-common-lib 0.1.867 → 0.1.868

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9601,7 +9601,7 @@ class TruErrorInterceptor {
9601
9601
  }
9602
9602
  intercept(request, next) {
9603
9603
  return next.handle(request).pipe(catchError((error) => {
9604
- if (error.status !== 401)
9604
+ if (error.status !== 401 && !(error.error instanceof Blob))
9605
9605
  this.errorManager.handleError(error);
9606
9606
  return next.handle(request);
9607
9607
  }));