mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Season 1, Episode 0 will not be automatically ignored (usually a pilot), with test.
This commit is contained in:
parent
dfbb222c6c
commit
7ff53e5ac2
2 changed files with 47 additions and 1 deletions
|
@ -287,7 +287,7 @@ namespace NzbDrone.Core.Providers
|
|||
newList.Add(episodeToUpdate);
|
||||
|
||||
//If it is Episode Zero Ignore it, since it is new
|
||||
if (episode.EpisodeNumber == 0)
|
||||
if (episode.EpisodeNumber == 0 && episode.SeasonNumber > 1)
|
||||
{
|
||||
episodeToUpdate.Ignored = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue