mirror of https://github.com/lidarr/Lidarr
Fixed: Searching for all missing episodes
This commit is contained in:
parent
206b69524d
commit
a336726dd5
|
@ -3,7 +3,7 @@ using NzbDrone.Core.Messaging.Commands;
|
|||
|
||||
namespace NzbDrone.Core.IndexerSearch
|
||||
{
|
||||
public class MissingEpisodeSearchCommand : Command
|
||||
public class EpisodeSearchCommand : Command
|
||||
{
|
||||
public List<int> EpisodeIds { get; set; }
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ namespace NzbDrone.Core.IndexerSearch
|
|||
PageSize = 100000,
|
||||
SortDirection = SortDirection.Ascending,
|
||||
SortKey = "Id",
|
||||
FilterExpression = v => v.Monitored && v.Series.Monitored
|
||||
FilterExpression = v => v.Monitored == true && v.Series.Monitored == true
|
||||
}).Records.ToList();
|
||||
|
||||
_logger.ProgressInfo("Performing missing search for {0} episodes", episodes.Count);
|
||||
|
|
|
@ -3,7 +3,7 @@ using NzbDrone.Core.Messaging.Commands;
|
|||
|
||||
namespace NzbDrone.Core.IndexerSearch
|
||||
{
|
||||
public class EpisodeSearchCommand : Command
|
||||
public class MissingEpisodeSearchCommand : Command
|
||||
{
|
||||
public List<int> EpisodeIds { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue