mirror of https://github.com/Jackett/Jackett
PassThePopcorn: Add missing tags. Resolves #8157
This commit is contained in:
parent
0b264d5a7c
commit
f99589443b
|
@ -190,6 +190,7 @@ namespace Jackett.Common.Indexers
|
||||||
var codec = (string)torrent["Codec"];
|
var codec = (string)torrent["Codec"];
|
||||||
var resolution = (string)torrent["Resolution"];
|
var resolution = (string)torrent["Resolution"];
|
||||||
var source = (string)torrent["Source"];
|
var source = (string)torrent["Source"];
|
||||||
|
var otherTags = (string)torrent["RemasterTitle"];
|
||||||
|
|
||||||
if (year != null)
|
if (year != null)
|
||||||
release.Description += $"<br>\nYear: {year}";
|
release.Description += $"<br>\nYear: {year}";
|
||||||
|
@ -231,6 +232,9 @@ namespace Jackett.Common.Indexers
|
||||||
release.Description += "<br>\nGolden Popcorn";
|
release.Description += "<br>\nGolden Popcorn";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (otherTags != null)
|
||||||
|
titleTags.Add(otherTags);
|
||||||
|
|
||||||
if (titleTags.Any())
|
if (titleTags.Any())
|
||||||
release.Title += " [" + string.Join(" / ", titleTags) + "]";
|
release.Title += " [" + string.Join(" / ", titleTags) + "]";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue