Fixed: Adding albums with unknown items in queue

pull/5107/head
Mark McDowall 10 months ago committed by Bogdan
parent 9375373668
commit 2536e22765

@ -25,6 +25,11 @@ namespace NzbDrone.Core.Download.Aggregation
public RemoteAlbum Augment(RemoteAlbum remoteAlbum)
{
if (remoteAlbum == null)
{
return null;
}
foreach (var augmenter in _augmenters)
{
try

@ -47,7 +47,7 @@ namespace NzbDrone.Core.Music
_eventAggregator.PublishEvent(new ArtistAddCompletedEvent(artist));
if (artist.AddOptions.SearchForMissingAlbums)
if (addOptions.SearchForMissingAlbums)
{
_commandQueueManager.Push(new MissingAlbumSearchCommand(artist.Id));
}

Loading…
Cancel
Save