mirror of
https://github.com/Lidarr/Lidarr.git
synced 2026-02-11 00:08:31 -06:00
Fixed: Null reference processing failed import for unknown album
(cherry picked from commit be09385c9d7526de7d3f03ca25c5289cc8ad4a4f)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user