@nxtedition/deepstream.io-client-js 23.2.0 → 23.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/deepstream.io-client-js",
3
- "version": "23.2.0",
3
+ "version": "23.2.1",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "bugs": {
@@ -266,7 +266,7 @@ class Record {
266
266
  const nextVersion = this._makeVersion(parseInt(prevVersion) + 1)
267
267
  this._version = nextVersion
268
268
 
269
- const update = [this._name, nextVersion, jsonPath.stringify(data), prevVersion]
269
+ const update = [this._name, nextVersion, jsonPath.stringify(nextData), prevVersion]
270
270
  this._updating ??= new Map()
271
271
  this._updating.set(nextVersion, update)
272
272
  this._handler._stats.updating += 1