mirror of
https://github.com/Radarr/Radarr
synced 2026-01-06 07:32:55 +01:00
Only search for monitored missing episodes
This commit is contained in:
parent
b47fa831ae
commit
0cad77303d
1 changed files with 2 additions and 1 deletions
|
|
@ -49,7 +49,8 @@ public void Execute(MissingEpisodeSearchCommand message)
|
|||
Page = 1,
|
||||
PageSize = 100000,
|
||||
SortDirection = SortDirection.Ascending,
|
||||
SortKey = "Id"
|
||||
SortKey = "Id",
|
||||
FilterExpression = v => v.Monitored && v.Series.Monitored
|
||||
}).Records.ToList();
|
||||
|
||||
_logger.ProgressInfo("Performing missing search for {0} episodes", episodes.Count);
|
||||
|
|
|
|||
Loading…
Reference in a new issue