mirror of https://github.com/Jackett/Jackett
cardigannIndexer: add variables support to keywordsfilters block. resolves #13297
This commit is contained in:
parent
d594828ffd
commit
a655c19399
|
@ -1327,7 +1327,7 @@ namespace Jackett.Common.Indexers
|
|||
if (!string.IsNullOrWhiteSpace((string)variables[".Query.Episode"]))
|
||||
KeywordTokens.Add((string)variables[".Query.Episode"]);
|
||||
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 New Issue