1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-04 02:38:08 +00:00

cardigann: parse result with template (#14462)

This commit is contained in:
Trim21 2023-06-16 02:35:39 +08:00 committed by GitHub
parent da80bde7d8
commit 6aee6d732a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1778,6 +1778,10 @@ namespace Jackett.Common.Indexers
value = defaultValue;
}
else
{
value = applyGoTemplateText(value, variables);
}
variables[variablesKey] = ParseFields(value, FieldName, release, FieldModifiers, searchUrlUri);
}