@nxtedition/deepstream.io-client-js 28.1.8 → 28.1.9

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": "@nxtedition/deepstream.io-client-js",
3
- "version": "28.1.8",
3
+ "version": "28.1.9",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "type": "module",
@@ -156,7 +156,13 @@ export default class Listener {
156
156
  value = this._stringify(value)
157
157
  } catch (err) {
158
158
  const bigIntPaths = /BigInt/.test(err.message) ? findBigIntPaths(value) : undefined
159
- throw Object.assign(new Error(`invalid value: ${value}`), { cause: err, data: { name: provider.name, bigIntPaths }})
159
+ this._error(
160
+ Object.assign(new Error(`invalid value: ${value}`), {
161
+ cause: err,
162
+ data: { name: provider.name, bigIntPaths },
163
+ }),
164
+ )
165
+ return
160
166
  }
161
167
  }
162
168