Backlog search added (disabled) - It will search for a full season if a full season is missing.

This commit is contained in:
Mark McDowall
2011-08-28 12:07:56 -07:00
parent 273530eda2
commit f604c35768
7 changed files with 298 additions and 7 deletions

View File

@@ -53,7 +53,7 @@ namespace NzbDrone.Core.Providers.Jobs
Logger.Debug("Getting episodes from database for series: {0} and season: {1}", targetId, secondaryTargetId);
var episodes = _episodeProvider.GetEpisodesBySeason(targetId, secondaryTargetId);
if (episodes == null)
if (episodes == null || episodes.Count == 0)
{
Logger.Warn("No episodes in database found for series: {0} and season: {1}.", targetId, secondaryTargetId);
return;