diff --git a/src/Jackett.Common/Indexers/PassThePopcorn.cs b/src/Jackett.Common/Indexers/PassThePopcorn.cs index b2753a223..6cf4efc61 100644 --- a/src/Jackett.Common/Indexers/PassThePopcorn.cs +++ b/src/Jackett.Common/Indexers/PassThePopcorn.cs @@ -190,6 +190,7 @@ namespace Jackett.Common.Indexers var codec = (string)torrent["Codec"]; var resolution = (string)torrent["Resolution"]; var source = (string)torrent["Source"]; + var otherTags = (string)torrent["RemasterTitle"]; if (year != null) release.Description += $"
\nYear: {year}"; @@ -231,6 +232,9 @@ namespace Jackett.Common.Indexers release.Description += "
\nGolden Popcorn"; } + if (otherTags != null) + titleTags.Add(otherTags); + if (titleTags.Any()) release.Title += " [" + string.Join(" / ", titleTags) + "]";