public async Task <bool> SyncDeleteCipherAsync(string id) { if (!_authService.IsAuthenticated) { return(false); } SyncStarted(); try { await _cipherService.DeleteDataAsync(id).ConfigureAwait(false); SyncCompleted(true); return(true); } catch (SQLite.SQLiteException) { SyncCompleted(false); return(false); } }