mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
Use album year in Redacted/Orpheus
This commit is contained in:
@@ -289,6 +289,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||||||
Title = WebUtility.HtmlDecode(title),
|
Title = WebUtility.HtmlDecode(title),
|
||||||
Artist = WebUtility.HtmlDecode(result.Artist),
|
Artist = WebUtility.HtmlDecode(result.Artist),
|
||||||
Album = WebUtility.HtmlDecode(result.GroupName),
|
Album = WebUtility.HtmlDecode(result.GroupName),
|
||||||
|
Year = int.Parse(result.GroupYear),
|
||||||
Container = torrent.Encoding,
|
Container = torrent.Encoding,
|
||||||
Codec = torrent.Format,
|
Codec = torrent.Format,
|
||||||
Size = long.Parse(torrent.Size),
|
Size = long.Parse(torrent.Size),
|
||||||
|
@@ -255,6 +255,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||||||
Title = WebUtility.HtmlDecode(title),
|
Title = WebUtility.HtmlDecode(title),
|
||||||
Artist = WebUtility.HtmlDecode(result.Artist),
|
Artist = WebUtility.HtmlDecode(result.Artist),
|
||||||
Album = WebUtility.HtmlDecode(result.GroupName),
|
Album = WebUtility.HtmlDecode(result.GroupName),
|
||||||
|
Year = int.Parse(result.GroupYear),
|
||||||
Container = torrent.Encoding,
|
Container = torrent.Encoding,
|
||||||
Codec = torrent.Format,
|
Codec = torrent.Format,
|
||||||
Size = long.Parse(torrent.Size),
|
Size = long.Parse(torrent.Size),
|
||||||
|
Reference in New Issue
Block a user