@nxtedition/deepstream.io-client-js 24.1.13 → 24.1.14

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": "24.1.13",
3
+ "version": "24.1.14",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "bugs": {
@@ -268,7 +268,9 @@ class Record {
268
268
  .then(() => {
269
269
  const prev = this.get(path)
270
270
  const next = updater(prev, this._version)
271
- this.set(path, next)
271
+ if (prev !== next) {
272
+ this.set(path, next)
273
+ }
272
274
  })
273
275
  .finally(() => {
274
276
  this.unref()