mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
PassThePopcorn: Add missing tags. Resolves #8157
This commit is contained in:
@@ -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) + "]";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user