mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
greatposterwall: move the chinese part of th title to the description. resolves #13646
This commit is contained in:
@@ -68,8 +68,6 @@ namespace Jackett.Common.Indexers
|
|||||||
var groupYear = (string)result["groupYear"];
|
var groupYear = (string)result["groupYear"];
|
||||||
var title = new StringBuilder();
|
var title = new StringBuilder();
|
||||||
title.Append(groupName);
|
title.Append(groupName);
|
||||||
if (!string.IsNullOrEmpty(groupSubName))
|
|
||||||
title.Append(" " + groupSubName + " ");
|
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(groupYear) && groupYear != "0")
|
if (!string.IsNullOrEmpty(groupYear) && groupYear != "0")
|
||||||
title.Append(" [" + groupYear + "]");
|
title.Append(" [" + groupYear + "]");
|
||||||
@@ -135,6 +133,8 @@ namespace Jackett.Common.Indexers
|
|||||||
release.MinimumSeedTime = 172800; // 48 hours
|
release.MinimumSeedTime = 172800; // 48 hours
|
||||||
// tag each results with Movie cats.
|
// tag each results with Movie cats.
|
||||||
release.Category = new List<int> { TorznabCatType.Movies.ID };
|
release.Category = new List<int> { TorznabCatType.Movies.ID };
|
||||||
|
if (!string.IsNullOrEmpty(groupSubName))
|
||||||
|
release.Description = groupSubName;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user