mirror of
https://github.com/Radarr/Radarr
synced 2024-12-23 08:22:39 +00:00
Fixed: Do not search movie if unmonitored (#3131)
This commit is contained in:
parent
07cb844ce6
commit
173b6847e5
1 changed files with 1 additions and 0 deletions
|
@ -46,6 +46,7 @@ public void Execute(MoviesSearchCommand message)
|
|||
if (!movies.Monitored)
|
||||
{
|
||||
_logger.Debug("Movie {0} is not monitored, skipping search", movies.Title);
|
||||
continue;
|
||||
}
|
||||
|
||||
var decisions = _nzbSearchService.MovieSearch(movieId, false);//_nzbSearchService.SeasonSearch(message.MovieId, season.SeasonNumber, false, message.Trigger == CommandTrigger.Manual);
|
||||
|
|
Loading…
Reference in a new issue