Use album year in Redacted/Orpheus

This commit is contained in:
Bogdan 2023-11-24 22:35:56 +02:00
parent c690e9a50a
commit c107011659
2 changed files with 2 additions and 0 deletions

View file

@ -289,6 +289,7 @@ namespace NzbDrone.Core.Indexers.Definitions
Title = WebUtility.HtmlDecode(title),
Artist = WebUtility.HtmlDecode(result.Artist),
Album = WebUtility.HtmlDecode(result.GroupName),
Year = int.Parse(result.GroupYear),
Container = torrent.Encoding,
Codec = torrent.Format,
Size = long.Parse(torrent.Size),

View file

@ -255,6 +255,7 @@ namespace NzbDrone.Core.Indexers.Definitions
Title = WebUtility.HtmlDecode(title),
Artist = WebUtility.HtmlDecode(result.Artist),
Album = WebUtility.HtmlDecode(result.GroupName),
Year = int.Parse(result.GroupYear),
Container = torrent.Encoding,
Codec = torrent.Format,
Size = long.Parse(torrent.Size),