mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04: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
Add a link
Reference in a new issue