Handle Cardigann "info" extra settings field

This commit is contained in:
Qstick
2020-12-31 02:48:38 -05:00
parent 6f113466bf
commit 76c271fab0
5 changed files with 54 additions and 0 deletions

View File

@@ -240,6 +240,10 @@ namespace NzbDrone.Core.Indexers.Cardigann
variables[name] = selected.Value;
}
else if (setting.Type == "info")
{
variables[name] = value;
}
else
{
throw new NotSupportedException();