unused var

This commit is contained in:
Bruno Windels 2021-02-24 10:14:26 +01:00
parent a372836a64
commit 23b8ba7e54

View file

@ -208,7 +208,7 @@ export class SessionContainer {
}); });
} }
}); });
await log.wrap("wait first sync", log => this._waitForFirstSync(log)); await log.wrap("wait first sync", () => this._waitForFirstSync());
this._status.set(LoadStatus.Ready); this._status.set(LoadStatus.Ready);
@ -223,7 +223,7 @@ export class SessionContainer {
} }
} }
async _waitForFirstSync(log) { async _waitForFirstSync() {
try { try {
this._sync.start(); this._sync.start();
this._status.set(LoadStatus.FirstSync); this._status.set(LoadStatus.FirstSync);