1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-10 06:03:09 +00:00

Update CardigannIndexer.cs

effing lint
This commit is contained in:
Garfield69 2022-04-10 19:47:07 +12:00
parent 41629187d9
commit fd8fde3b8c

View file

@ -1231,7 +1231,7 @@ namespace Jackett.Common.Indexers
if (selection.Type is JTokenType.Array)
{
// turn this json array into a comma delimited string
var valueArray = selection.Value< JArray > ();
var valueArray = selection.Value<JArray> ();
value = String.Join(",", valueArray);
} else
value = selection.Value<string>();