@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