mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 15:37:55 +02:00
Episodes older than 14 days have their own priority
This commit is contained in:
@@ -25,12 +25,15 @@ namespace NzbDrone.Core.Download.Clients
|
||||
_diskProvider = diskProvider;
|
||||
}
|
||||
|
||||
public virtual bool DownloadNzb(string url, string title)
|
||||
public virtual bool DownloadNzb(RemoteEpisode remoteEpisode)
|
||||
{
|
||||
var url = remoteEpisode.Report.NzbUrl;
|
||||
var title = remoteEpisode.Report.Title;
|
||||
|
||||
try
|
||||
{
|
||||
//Todo: Allow full season releases
|
||||
if (Parser.Parser.ParseTitle(title).FullSeason)
|
||||
if (remoteEpisode.ParsedEpisodeInfo.FullSeason)
|
||||
{
|
||||
logger.Info("Skipping Full Season Release: {0}", title);
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user