Fixed: Don't die on album deleted notifications with the artist already removed

This commit is contained in:
Bogdan 2024-02-16 16:52:04 +02:00
parent b2f595436b
commit 4abca0c896
1 changed files with 8 additions and 1 deletions

View File

@ -310,7 +310,14 @@ namespace NzbDrone.Core.Music
public void Handle(ArtistsDeletedEvent message)
{
// TODO Do this in one call instead of one for each artist?
var albums = message.Artists.SelectMany(x => GetAlbumsByArtistMetadataId(x.ArtistMetadataId)).ToList();
var albums = message.Artists.SelectMany(artist =>
{
var artistAlbums = GetAlbumsByArtistMetadataId(artist.ArtistMetadataId);
artistAlbums.ForEach(a => a.Artist = artist);
return artistAlbums;
}).ToList();
DeleteMany(albums);
}
}