@live-change/dao 0.9.40 → 0.9.42

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.
@@ -29,7 +29,9 @@ class TimeSynchronization {
29
29
  this.timeDiff = 0 // Calculated diff
30
30
 
31
31
  this.timeDiffObservable = new ObservableValue(0)
32
+ this.timeDiffObservable.observe(() => {}) // prevent unobserve
32
33
  this.synchronizedObservable = new ObservableValue(false)
34
+ this.synchronizedObservable.observe(() => {}) // prevent unobserve
33
35
 
34
36
  this.pongCount = 0
35
37
 
package/package.json CHANGED
@@ -35,6 +35,6 @@
35
35
  "scripts": {
36
36
  "test": "NODE_ENV=test tape tests/*"
37
37
  },
38
- "version": "0.9.40",
39
- "gitHead": "d25366854a7a30557fd8f8e428a2e02cabb5b323"
38
+ "version": "0.9.42",
39
+ "gitHead": "6571e1434eed33df905a7708aad783e9339968f1"
40
40
  }