mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-17 18:30:47 +02:00
Fixed: (Anidex) Update indexer capabilities
This commit is contained in:
parent
0dd5c56175
commit
5f7bc82eb5
1 changed files with 8 additions and 4 deletions
|
|
@ -57,6 +57,14 @@ private IndexerCapabilities SetCapabilities()
|
|||
TvSearchParams = new List<TvSearchParam>
|
||||
{
|
||||
TvSearchParam.Q
|
||||
},
|
||||
MusicSearchParams = new List<MusicSearchParam>
|
||||
{
|
||||
MusicSearchParam.Q,
|
||||
},
|
||||
BookSearchParams = new List<BookSearchParam>
|
||||
{
|
||||
BookSearchParam.Q,
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -94,10 +102,6 @@ public AnidexRequestGenerator(AnidexSettings settings, IndexerCapabilities capab
|
|||
|
||||
public IndexerPageableRequestChain GetSearchRequests(MovieSearchCriteria searchCriteria)
|
||||
{
|
||||
var pageableRequests = new IndexerPageableRequestChain();
|
||||
|
||||
pageableRequests.Add(GetPagedRequests($"{searchCriteria.SanitizedSearchTerm}", searchCriteria.Categories));
|
||||
|
||||
return new IndexerPageableRequestChain();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue