mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-09 05:06:09 +02:00
Fix my typo
This commit is contained in:
parent
078b53dc13
commit
51d08fd8e8
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ public Series UpdateSeries(Series series, bool updateEpisodesToMatchSeason = tru
|
|||
{
|
||||
var storedSeason = storedSeries.Seasons.SingleOrDefault(s => s.SeasonNumber == season.SeasonNumber);
|
||||
|
||||
if (storedSeason != null &&season.Monitored != storedSeason.Monitored && updateEpisodesToMatchSeason)
|
||||
if (storedSeason != null && season.Monitored != storedSeason.Monitored && updateEpisodesToMatchSeason)
|
||||
{
|
||||
_episodeService.SetEpisodeMonitoredBySeason(series.Id, season.SeasonNumber, season.Monitored);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue