Fixed: Searching for all missing episodes

This commit is contained in:
Mark McDowall 2014-04-02 16:24:31 -07:00
parent 206b69524d
commit a336726dd5
3 changed files with 3 additions and 3 deletions

View File

@ -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; }

View File

@ -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);

View File

@ -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; }