@ngx-smz/core 19.6.0 → 19.6.1

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.
@@ -8579,7 +8579,7 @@ class HttpErrorHandler {
8579
8579
  }
8580
8580
  }
8581
8581
  static isBlobError(err) {
8582
- return err instanceof HttpErrorResponse && err.error instanceof Blob && err.error.type === 'application/json';
8582
+ return err instanceof HttpErrorResponse && err.error instanceof Blob && err.error?.type?.includes('application/json') === true;
8583
8583
  }
8584
8584
  static async parseBlob(err) {
8585
8585
  return new Promise((resolve, reject) => {