From 9709db9aac09ddf5b97b9a4141f2c3732518c75c Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Thu, 20 Oct 2022 19:08:12 +1300 Subject: [PATCH] greatposterwall: move the chinese part of th title to the description. resolves #13646 --- src/Jackett.Common/Indexers/GreatPosterWall.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Jackett.Common/Indexers/GreatPosterWall.cs b/src/Jackett.Common/Indexers/GreatPosterWall.cs index 9dea4ec44..5e9d089d6 100644 --- a/src/Jackett.Common/Indexers/GreatPosterWall.cs +++ b/src/Jackett.Common/Indexers/GreatPosterWall.cs @@ -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 { TorznabCatType.Movies.ID }; + if (!string.IsNullOrEmpty(groupSubName)) + release.Description = groupSubName; return true; } }