mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07:00
Auto adding of episodes is now disabled. (we should make it more conservative if we want to bring it back)
This commit is contained in:
parent
b1aeb0a973
commit
7ec89056af
2 changed files with 123 additions and 257 deletions
|
@ -123,6 +123,9 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
public virtual IList<Episode> GetEpisodesByParseResult(EpisodeParseResult parseResult, Boolean autoAddNew = false)
|
||||
{
|
||||
//Disabling auto add, need to make it a lot more conservative.
|
||||
autoAddNew = false;
|
||||
|
||||
var result = new List<Episode>();
|
||||
|
||||
if (parseResult.AirDate.HasValue)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue