diff --git a/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs b/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs index f742caf302..611b77daf2 100644 --- a/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs +++ b/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs @@ -98,7 +98,7 @@ public override IEnumerable GetItems() SeedRatio = GetSeedRatio(torrent), Status = GetStatus(torrent), Message = GetMessage(torrent), - CanMoveFiles = IsCompleted(torrent), + CanMoveFiles = IsFinished(torrent), CanBeRemoved = IsFinished(torrent) }; @@ -218,11 +218,6 @@ protected bool IsFinished(DownloadStationTask torrent) return torrent.Status == DownloadStationTaskStatus.Finished; } - protected bool IsCompleted(DownloadStationTask torrent) - { - return torrent.Status == DownloadStationTaskStatus.Seeding || IsFinished(torrent) || (torrent.Status == DownloadStationTaskStatus.Waiting && torrent.Size != 0 && GetRemainingSize(torrent) <= 0); - } - protected string GetMessage(DownloadStationTask torrent) { if (torrent.StatusExtra != null)