mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-05 03:00:21 +02:00
Fixed: (Cardigann) Use variables in keywordsfilters block
Fixes #1035 Fixes v5 TorrentLand
This commit is contained in:
parent
7cf9fc6a4f
commit
a0b650e7a5
1 changed files with 1 additions and 1 deletions
|
|
@ -1000,7 +1000,7 @@ private IEnumerable<IndexerRequest> GetRequest(Dictionary<string, object> variab
|
|||
}
|
||||
|
||||
variables[".Query.Keywords"] = string.Join(" ", keywordTokens);
|
||||
variables[".Keywords"] = ApplyFilters((string)variables[".Query.Keywords"], search.Keywordsfilters);
|
||||
variables[".Keywords"] = ApplyFilters((string)variables[".Query.Keywords"], search.Keywordsfilters, variables);
|
||||
|
||||
// TODO: prepare queries first and then send them parallel
|
||||
var searchPaths = search.Paths;
|
||||
|
|
|
|||
Loading…
Reference in a new issue