@nxtedition/deepstream.io-client-js 31.2.7 → 31.2.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/deepstream.io-client-js",
3
- "version": "31.2.7",
3
+ "version": "31.2.8",
4
4
  "description": "the javascript client for deepstream.io",
5
5
  "homepage": "http://deepstream.io",
6
6
  "type": "module",
@@ -682,8 +682,10 @@ class RecordHandler {
682
682
  if (sync) {
683
683
  this._sync(onSync, sync === true ? 'WEAK' : sync, subscription)
684
684
  } else {
685
- onSync(subscription)
685
+ subscription.synced = true
686
686
  }
687
+
688
+ onUpdate(subscription.record, subscription)
687
689
  })
688
690
  }
689
691