Fixed: (Cardigann) Deprecate noappend for category and categorydesc

This commit is contained in:
Bogdan 2024-03-30 16:46:30 +02:00
parent 6a1e01abbd
commit 5447fad1fc

View file

@ -502,6 +502,11 @@ private string ParseFields(string value, string fieldName, TorrentInfo release,
value = release.Description;
break;
case "category":
if (fieldModifiers.Contains("noappend"))
{
_logger.Warn("The \"noappend\" modifier is deprecated. Please switch to \"default\". See the Definition Format in the Wiki for more information.");
}
var cats = _categories.MapTrackerCatToNewznab(value);
if (cats.Any())
{
@ -518,6 +523,11 @@ private string ParseFields(string value, string fieldName, TorrentInfo release,
value = release.Categories.ToString();
break;
case "categorydesc":
if (fieldModifiers.Contains("noappend"))
{
_logger.Warn("The \"noappend\" modifier is deprecated. Please switch to \"default\". See the Definition Format in the Wiki for more information.");
}
var catsDesc = _categories.MapTrackerCatDescToNewznab(value);
if (catsDesc.Any())
{