mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -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
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue