@trudb/tru-common-lib 0.2.16 → 0.2.17

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.
@@ -10013,7 +10013,7 @@ class TruErrorInterceptor {
10013
10013
  }
10014
10014
  intercept(request, next) {
10015
10015
  return next.handle(request).pipe(catchError((error) => {
10016
- if (error.status !== 401 && !(error.error instanceof Blob))
10016
+ if (error.status !== 401 && error.status !== 999 && !(error.error instanceof Blob))
10017
10017
  this.errorManager.handleError(error);
10018
10018
  return next.handle(request);
10019
10019
  }));