Indexers will actually support searching for daily episodes.

This commit is contained in:
Mark McDowall 2011-11-28 12:05:28 -08:00
commit 7af6977cab
4 changed files with 30 additions and 3 deletions

View file

@ -72,6 +72,16 @@ namespace NzbDrone.Core.Providers.Indexer
};
}
if (searchModel.SearchType == SearchType.DailySearch)
{
return new List<string>
{
String.Format(
@"http://www.newzbin.com/search/query/?q={0}+{1:yyyy-MM-dd}&fpn=p&searchaction=Go&category=8&{2}",
searchModel.SeriesTitle, searchModel.AirDate, UrlParams)
};
}
return new List<string>();
}