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

@ -32,8 +32,11 @@ namespace NzbDrone.Core.Download.Clients
throw new NotImplementedException();
}
public bool DownloadNzb(string url, string title)
public bool DownloadNzb(RemoteEpisode remoteEpisode)
{
var url = remoteEpisode.Report.NzbUrl;
var title = remoteEpisode.Report.Title;
try
{
title = FileNameBuilder.CleanFilename(title);