Revert "cardigann: fix NullRef for empty release categories"

This reverts commit f563bdbc31.
This commit is contained in:
Garfield69 2024-01-21 06:36:51 +13:00
parent fc7a547775
commit 466851c838
1 changed files with 1 additions and 1 deletions

View File

@ -2183,7 +2183,7 @@ namespace Jackett.Common.Indexers
else
release.Category = release.Category.Union(cats).ToList();
}
value = release.Category?.ToString() ?? string.Empty;
value = release.Category.ToString() ?? string.Empty;
break;
case "categorydesc":
if (FieldModifiers.Contains("noappend"))