Add Album Label Support from Metadata

This commit is contained in:
Qstick
2017-09-17 23:20:36 -04:00
parent 405e7f981d
commit fbe6bfc78e
9 changed files with 12 additions and 10 deletions
@@ -143,6 +143,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
album.CleanTitle = Parser.Parser.CleanArtistTitle(album.Title);
album.AlbumType = resource.Type;
album.Images = resource.Images.Select(MapImage).ToList();
album.Label = resource.Label;
var tracks = resource.Tracks.Select(MapTrack);
album.Tracks = tracks.ToList();