mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Episodes older than 14 days have their own priority
This commit is contained in:
parent
c12ea363d8
commit
98e94643fb
16 changed files with 164 additions and 66 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue