Fixed the issue where we were marking the whole season as wanted in Sonarr rather than the individual episode #2629

This commit is contained in:
TidusJar 2018-11-14 20:48:23 +00:00
commit 3de88be16c
2 changed files with 2 additions and 2 deletions

View file

@ -355,7 +355,7 @@ namespace Ombi.Core.Senders
var sea = new Season
{
seasonNumber = i,
monitored = model.SeasonRequests.Any(x => x.SeasonNumber == index && x.SeasonNumber != 0)
monitored = false
};
seasonsToUpdate.Add(sea);
}