mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Indexers will actually support searching for daily episodes.
This commit is contained in:
parent
2de116b99d
commit
7af6977cab
4 changed files with 30 additions and 3 deletions
|
@ -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>();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue