Episodes older than 14 days have their own priority

This commit is contained in:
Mark McDowall 2013-07-07 20:15:15 -07:00
commit 98e94643fb
16 changed files with 164 additions and 66 deletions

View file

@ -27,10 +27,9 @@ namespace NzbDrone.Core.Download
public bool DownloadReport(RemoteEpisode remoteEpisode)
{
var downloadTitle = remoteEpisode.Report.Title;
var provider = _downloadClientProvider.GetDownloadClient();
bool success = provider.DownloadNzb(remoteEpisode.Report.NzbUrl, downloadTitle);
bool success = provider.DownloadNzb(remoteEpisode);
if (success)
{
@ -40,7 +39,5 @@ namespace NzbDrone.Core.Download
return success;
}
}
}