From 931e3cf42d52fc70698cdad8a90248233df92637 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 20 May 2023 20:56:02 -0700 Subject: [PATCH] Cleanup TorrentDownloadStation Fixed: Don't move seeding torrents in Synology Download Station (cherry picked from commit 3cd33d3f44097b4cb4fb291bca70a0aa53c4b844) --- .../Clients/DownloadStation/TorrentDownloadStation.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs b/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs index 5d3d0729e..42b5bb1f2 100644 --- a/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs +++ b/src/NzbDrone.Core/Download/Clients/DownloadStation/TorrentDownloadStation.cs @@ -109,11 +109,6 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation 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)