mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
New: Rewrite of download decision engine.
This commit is contained in:
parent
a168bdfa00
commit
5717b7f596
60 changed files with 2013 additions and 1745 deletions
|
@ -127,10 +127,10 @@ namespace NzbDrone.Core.Providers
|
|||
_database.Execute("UPDATE Episodes SET GrabDate=@0 WHERE EpisodeId=@1", DateTime.Now, episodeId);
|
||||
}
|
||||
|
||||
public virtual IList<Episode> GetEpisodesByParseResult(EpisodeParseResult parseResult, Boolean autoAddNew = false)
|
||||
public virtual IList<Episode> GetEpisodesByParseResult(EpisodeParseResult parseResult)
|
||||
{
|
||||
//Disabling auto add, need to make it a lot more conservative.
|
||||
autoAddNew = false;
|
||||
var autoAddNew = false;
|
||||
|
||||
var result = new List<Episode>();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue