mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Searching will be more picky now to ensure the proper series and season (and episode if relevant)
This commit is contained in:
parent
067d735448
commit
30e21ecd16
5 changed files with 507 additions and 52 deletions
|
@ -49,7 +49,9 @@ namespace NzbDrone.Core.Providers.Indexer
|
|||
|
||||
if (searchModel.SearchType == SearchType.SeasonSearch)
|
||||
{
|
||||
searchUrls.Add(String.Format("{0}&limit=100&q={1}&season{2}", url, searchModel.SeriesTitle, searchModel.SeasonNumber));
|
||||
//Todo: Allow full season searching to process individual episodes
|
||||
//searchUrls.Add(String.Format("{0}&limit=100&q={1}&season{2}", url, searchModel.SeriesTitle, searchModel.SeasonNumber));
|
||||
searchUrls.Add(String.Format("{0}&limit=100&q={1}+Season", url, searchModel.SeriesTitle));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue