mirror of
https://github.com/Jackett/Jackett
synced 2025-02-01 12:21:35 +00:00
anidex: support season and episode for tv searches
This commit is contained in:
parent
98b548d11f
commit
1174549767
1 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ namespace Jackett.Common.Indexers
|
|||
{
|
||||
TvSearchParams = new List<TvSearchParam>
|
||||
{
|
||||
TvSearchParam.Q
|
||||
TvSearchParam.Q, TvSearchParam.Season, TvSearchParam.Ep
|
||||
},
|
||||
MusicSearchParams = new List<MusicSearchParam>
|
||||
{
|
||||
|
@ -180,7 +180,7 @@ namespace Jackett.Common.Indexers
|
|||
{ "s", GetSortBy },
|
||||
{ "o", GetOrder },
|
||||
{ "group_id", "0" }, // No group
|
||||
{ "q", query.SearchTerm ?? string.Empty }
|
||||
{ "q", query.GetQueryString() ?? string.Empty }
|
||||
};
|
||||
|
||||
// Get specified categories
|
||||
|
|
Loading…
Reference in a new issue