mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-11 06:33:32 +00:00
Fixed: Monitor 'None' won't monitor latest season
This commit is contained in:
parent
145c644c9d
commit
59bffa66ad
1 changed files with 2 additions and 1 deletions
|
@ -123,7 +123,8 @@ namespace NzbDrone.Core.Tv
|
|||
if (seasonNumber > 0 &&
|
||||
seasonNumber == lastSeason &&
|
||||
monitoringOptions.Monitor != MonitorTypes.FirstSeason &&
|
||||
monitoringOptions.Monitor != MonitorTypes.Pilot)
|
||||
monitoringOptions.Monitor != MonitorTypes.Pilot &&
|
||||
monitoringOptions.Monitor != MonitorTypes.None)
|
||||
{
|
||||
season.Monitored = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue