mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fixed: Don't die on album deleted notifications with the artist already removed
This commit is contained in:
parent
b2f595436b
commit
4abca0c896
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue