load even if sync didnt complete successfully

This commit is contained in:
Kyle Spearrin 2018-11-27 09:28:36 -05:00
parent 1d8f7fa538
commit c903ad7e66
3 changed files with 4 additions and 11 deletions

2
jslib

@ -1 +1 @@
Subproject commit 64a6015a67a8110cd8a4ef897e1338c71c4b6b49 Subproject commit 6920cf77b9373ed25f882ce68f17dde582e0a5be

View File

@ -87,11 +87,6 @@ export class CurrentTabComponent implements OnInit, OnDestroy {
}); });
} }
break; break;
case 'syncCompleted':
if (message.successfully) {
await this.load();
}
break;
default: default:
break; break;
} }

View File

@ -97,11 +97,9 @@ export class GroupingsComponent extends BaseGroupingsComponent implements OnInit
this.ngZone.run(async () => { this.ngZone.run(async () => {
switch (message.command) { switch (message.command) {
case 'syncCompleted': case 'syncCompleted':
if (message.successfully) { window.setTimeout(() => {
window.setTimeout(() => { this.load();
this.load(); }, 500);
}, 500);
}
break; break;
default: default:
break; break;