mirror of
https://github.com/Jackett/Jackett
synced 2024-12-29 11:17:22 +00:00
PassThePopcorn: Add missing tags. Resolves #8157
This commit is contained in:
parent
0b264d5a7c
commit
f99589443b
1 changed files with 4 additions and 0 deletions
|
@ -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) + "]";
|
||||
|
||||
|
|
Loading…
Reference in a new issue