mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-07 09:15:58 +00:00
Fixed: Return artist properties for existing albums during album search
Fixes #457
This commit is contained in:
@@ -255,6 +255,11 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
|
||||
{
|
||||
var album = _albumService.FindById(resource.Id) ?? MapAlbum(resource);
|
||||
|
||||
if (album.Artist == null)
|
||||
{
|
||||
album.Artist = _artistService.GetArtist(album.ArtistId);
|
||||
}
|
||||
|
||||
return album;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user