1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-27 10:42:35 +03:00

updated config sync timing

This commit is contained in:
Eugene Pankov 2021-07-27 20:43:00 +02:00
parent 744e731a22
commit ae8c0128cb
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
2 changed files with 2 additions and 1 deletions

View File

@ -80,6 +80,7 @@ ul.nav-tabs(ngbNav, #nav='ngbNav')
.form-line
.header
.title Sync automatically
.description Automatically upload changes and check for updates every minute
toggle(
[(ngModel)]='config.store.configSync.auto',

View File

@ -173,7 +173,7 @@ export class ConfigSyncService {
this.lastRemoteChange = new Date(cfg.modified_at)
}
}
await new Promise(resolve => setTimeout(resolve, 5000))
await new Promise(resolve => setTimeout(resolve, 60000))
}
}
}