PassThePopcorn: Add missing tags. Resolves #8157

This commit is contained in:
cadatoiva 2020-04-13 00:10:23 -05:00
parent 0b264d5a7c
commit f99589443b
1 changed files with 4 additions and 0 deletions

View File

@ -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 += $"<br>\nYear: {year}";
@ -231,6 +232,9 @@ namespace Jackett.Common.Indexers
release.Description += "<br>\nGolden Popcorn";
}
if (otherTags != null)
titleTags.Add(otherTags);
if (titleTags.Any())
release.Title += " [" + string.Join(" / ", titleTags) + "]";