private void RemoveDownload(string id) { try { lock (_commandLockObject) { if (!string.IsNullOrWhiteSpace(id)) { _twitchService.Remove(id); } } } catch (Exception ex) { _dialogService.ShowAndLogException(ex); } }