@cratis/arc 20.51.0 → 20.52.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cratis/arc",
3
- "version": "20.51.0",
3
+ "version": "20.52.0",
4
4
  "description": "",
5
5
  "author": "Cratis",
6
6
  "license": "MIT",
@@ -219,7 +219,7 @@ export abstract class ObservableQueryFor<TDataType, TParameters = object> implem
219
219
  } else {
220
220
  result.data = [];
221
221
  }
222
- } else {
222
+ } else if (result.data) {
223
223
  result.data = JsonSerializer.deserializeFromInstance(this.modelType, result.data);
224
224
  }
225
225
  }