Fixed: Null reference processing failed import for unknown album

(cherry picked from commit be09385c9d7526de7d3f03ca25c5289cc8ad4a4f)
This commit is contained in:
Bogdan 2023-04-15 23:39:40 +03:00 committed by Qstick
parent 1374fb1a32
commit 47d0acaa1a
1 changed files with 10 additions and 0 deletions

View File

@ -184,6 +184,11 @@ namespace NzbDrone.Core.History
public void Handle(AlbumImportIncompleteEvent message)
{
if (message.TrackedDownload.RemoteAlbum == null)
{
return;
}
foreach (var album in message.TrackedDownload.RemoteAlbum.Albums)
{
var history = new EntityHistory
@ -266,6 +271,11 @@ namespace NzbDrone.Core.History
public void Handle(DownloadCompletedEvent message)
{
if (message.TrackedDownload.RemoteAlbum == null)
{
return;
}
foreach (var album in message.TrackedDownload.RemoteAlbum.Albums)
{
var history = new EntityHistory