From f99589443bb68e6454eaf15862a3d9eefcdc4262 Mon Sep 17 00:00:00 2001 From: cadatoiva Date: Mon, 13 Apr 2020 00:10:23 -0500 Subject: [PATCH] PassThePopcorn: Add missing tags. Resolves #8157 --- src/Jackett.Common/Indexers/PassThePopcorn.cs | 4 ++++ 1 file changed, 4 insertions(+) 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) + "]";