1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +00:00

allow sync to throw error

This commit is contained in:
Kyle Spearrin
2019-10-15 11:07:08 -04:00
parent eba9927016
commit ee7fa795a9
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: e35431f374...669f6ddf93

View File

@@ -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 {