cardigannIndexer: add variables support to keywordsfilters block. resolves #13297

This commit is contained in:
Garfield69 2022-06-13 12:55:38 +12:00
parent d594828ffd
commit a655c19399
1 changed files with 1 additions and 1 deletions

View File

@ -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;