mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-29 00:14:31 +08:00
Sync is already there
https://github.com/the-djmaze/snappymail/issues/24
This commit is contained in:
parent
1c00a455f1
commit
500575dc32
1 changed files with 2 additions and 2 deletions
|
@ -988,13 +988,13 @@ class AppUser extends AbstractApp {
|
|||
setInterval(this.quota, 900000);
|
||||
setInterval(this.foldersReload, 1200000);
|
||||
|
||||
setTimeout(this.contactsSync, 10000);
|
||||
contactsSyncInterval = 5 <= contactsSyncInterval ? contactsSyncInterval : 20;
|
||||
contactsSyncInterval = 320 >= contactsSyncInterval ? contactsSyncInterval : 320;
|
||||
setInterval(this.contactsSync, contactsSyncInterval * 60000 + 5000);
|
||||
|
||||
setTimeout(this.contactsSync, 10000);
|
||||
setTimeout(() => this.folderInformationMultiply(true), 2000);
|
||||
|
||||
setInterval(this.contactsSync, contactsSyncInterval * 60000 + 5000);
|
||||
|
||||
this.accountsAndIdentities(true);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue