greatposterwall: move the chinese part of th title to the description. resolves #13646

This commit is contained in:
Garfield69 2022-10-20 19:08:12 +13:00
parent 4179392d52
commit 9709db9aac
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,6 @@ namespace Jackett.Common.Indexers
var groupYear = (string)result["groupYear"];
var title = new StringBuilder();
title.Append(groupName);
if (!string.IsNullOrEmpty(groupSubName))
title.Append(" " + groupSubName + " ");
if (!string.IsNullOrEmpty(groupYear) && groupYear != "0")
title.Append(" [" + groupYear + "]");
@ -135,6 +133,8 @@ namespace Jackett.Common.Indexers
release.MinimumSeedTime = 172800; // 48 hours
// tag each results with Movie cats.
release.Category = new List<int> { TorznabCatType.Movies.ID };
if (!string.IsNullOrEmpty(groupSubName))
release.Description = groupSubName;
return true;
}
}