#98, new option "initialized" which indicates if setup has been finished

This commit is contained in:
azivner
2018-07-24 08:12:36 +02:00
parent 1fe7c62f5a
commit 013714cb5c
11 changed files with 130 additions and 57 deletions

View File

@@ -24,7 +24,10 @@ async function testSync() {
}
async function getStats() {
return syncService.stats;
return {
initialized: await optionService.getOption('initialized') === 'true',
stats: syncService.stats
};
}
async function checkSync() {