Fixed: Don't move seeding torrents in Synology Download Station

Closes #3997
pull/5671/head
Mark McDowall 2 years ago
parent b38c1255dc
commit 3cd33d3f44

@ -96,7 +96,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
SeedRatio = GetSeedRatio(torrent), SeedRatio = GetSeedRatio(torrent),
Status = GetStatus(torrent), Status = GetStatus(torrent),
Message = GetMessage(torrent), Message = GetMessage(torrent),
CanMoveFiles = IsCompleted(torrent), CanMoveFiles = IsFinished(torrent),
CanBeRemoved = IsFinished(torrent) CanBeRemoved = IsFinished(torrent)
}; };
@ -216,11 +216,6 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
return torrent.Status == DownloadStationTaskStatus.Finished; 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) protected string GetMessage(DownloadStationTask torrent)
{ {
if (torrent.StatusExtra != null) if (torrent.StatusExtra != null)

Loading…
Cancel
Save