mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-28 07:31:55 +02:00
Fixed: Don't fail Metadata service when Adding Album
This commit is contained in:
parent
1752fe5c53
commit
05de0c0f4c
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ public void Handle(MediaCoversUpdatedEvent message)
|
|||
{
|
||||
if (message.Updated)
|
||||
{
|
||||
var artist = message.Artist;
|
||||
var artist = message.Artist ?? message.Album.Artist;
|
||||
|
||||
foreach (var extraFileManager in _extraFileManagers)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue