From ee7fa795a9a86a608b685f50bdc7e2624b84f515 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 15 Oct 2019 11:07:08 -0400 Subject: [PATCH] allow sync to throw error --- jslib | 2 +- src/app/vault/vault.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index e35431f374..669f6ddf93 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit e35431f3742bb9ab0820204b7823a5f4f6dd35b7 +Subproject commit 669f6ddf93bbfe8acd18a4834fff5e1c7f9c91ba diff --git a/src/app/vault/vault.component.ts b/src/app/vault/vault.component.ts index e0905ee366..331ce1a297 100644 --- a/src/app/vault/vault.component.ts +++ b/src/app/vault/vault.component.ts @@ -117,7 +117,7 @@ export class VaultComponent implements OnInit, OnDestroy { break; case 'syncVault': try { - await this.syncService.fullSync(true); + await this.syncService.fullSync(true, true); this.toasterService.popAsync('success', null, this.i18nService.t('syncingComplete')); this.analytics.eventTrack.next({ action: 'Synced Full' }); } catch {