Fixed: Searching for all missing episodes

pull/4/head
Mark McDowall 10 years ago
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…
Cancel
Save