From 46e631388d75479432b5dc96e4112dcc429d19d6 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 31 May 2019 08:18:18 -0400 Subject: [PATCH] no need to catch apiexception --- src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs b/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs index b0db89fce..52b1bc4ae 100644 --- a/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs +++ b/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs @@ -269,11 +269,7 @@ namespace Bit.App.Pages public async Task SyncAsync() { await _deviceActionService.ShowLoadingAsync(AppResources.Syncing); - try - { - await _syncService.FullSyncAsync(false); - } - catch(ApiException) { } + await _syncService.FullSyncAsync(false); await _deviceActionService.HideLoadingAsync(); _platformUtilsService.ShowToast("success", null, AppResources.SyncingComplete); }