mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Fixed default monitored status for non-special episodes
This commit is contained in:
parent
1b83549cab
commit
c519195ce3
1 changed files with 2 additions and 1 deletions
|
@ -121,7 +121,8 @@ namespace NzbDrone.Core.Tv
|
|||
else
|
||||
{
|
||||
var season = seasons.FirstOrDefault(c => c.SeasonNumber == episode.SeasonNumber);
|
||||
episodeToUpdate.Monitored = season != null && season.Monitored;
|
||||
|
||||
episodeToUpdate.Monitored = season != null ? season.Monitored : true;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue