@openfin/core 35.78.7 → 35.78.8

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.
Files changed (2) hide show
  1. package/out/mock.js +2 -1
  2. package/package.json +1 -1
package/out/mock.js CHANGED
@@ -8274,7 +8274,8 @@ function errorToPOJO(error) {
8274
8274
  stack: error.stack,
8275
8275
  name: error.name,
8276
8276
  message: error.message,
8277
- toString: error.toString
8277
+ // support the case where stack is empty or missing
8278
+ toString: () => error.stack || error.toString()
8278
8279
  };
8279
8280
  }
8280
8281
  errors.errorToPOJO = errorToPOJO;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "35.78.7",
3
+ "version": "35.78.8",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/mock.js",