mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-06 03:18:47 +00: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 @@ namespace NzbDrone.Core.IndexerSearch
|
|||
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…
Add table
Reference in a new issue