disable this for now as sync is not an EventEmitter anymore

This commit is contained in:
Bruno Windels 2020-04-22 20:53:57 +02:00
parent e080bf28a7
commit 0424ffe231

View file

@ -18,13 +18,13 @@ export class SyncStatusViewModel extends EventEmitter {
onFirstSubscriptionAdded(name) {
if (name === "change") {
this._sync.on("status", this._onStatus);
//this._sync.status.("status", this._onStatus);
}
}
onLastSubscriptionRemoved(name) {
if (name === "change") {
this._sync.on("status", this._onStatus);
//this._sync.status.("status", this._onStatus);
}
}