1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

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

View File

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