fix: increase auto sync interval to 5 seconds

This commit is contained in:
thecodrr
2021-10-29 11:55:18 +05:00
parent ab0fe3b46c
commit 0bf1a89d1f

View File

@@ -51,7 +51,7 @@ export default class Sync {
this._merger = new Merger(this._db);
this._tokenManager = new TokenManager(this._db.storage);
this._autoSyncTimeout = 0;
this._autoSyncInterval = 0;
this._autoSyncInterval = 5000;
this.syncMutex = withTimeout(
new Mutex(),