From 381da132f8c1e9c49c3afd1ef13c4528731c28de Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 26 Jun 2018 12:03:11 -0400 Subject: [PATCH] sync is not forced --- src/app/vault/vault.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/vault/vault.component.ts b/src/app/vault/vault.component.ts index d6f8f7d315..4f6412208e 100644 --- a/src/app/vault/vault.component.ts +++ b/src/app/vault/vault.component.ts @@ -64,7 +64,7 @@ export class VaultComponent implements OnInit { async ngOnInit() { this.route.queryParams.subscribe(async (params) => { - await this.syncService.fullSync(true); + await this.syncService.fullSync(false); await Promise.all([ this.groupingsComponent.load(), this.organizationsComponent.load(),