mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-02 21:53:31 +01:00
Fixed: Null reference processing failed import for unknown album
(cherry picked from commit be09385c9d7526de7d3f03ca25c5289cc8ad4a4f)
This commit is contained in:
parent
1374fb1a32
commit
47d0acaa1a
1 changed files with 10 additions and 0 deletions
|
|
@ -184,6 +184,11 @@ public void Handle(AlbumGrabbedEvent message)
|
|||
|
||||
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 @@ public void Handle(DownloadFailedEvent message)
|
|||
|
||||
public void Handle(DownloadCompletedEvent message)
|
||||
{
|
||||
if (message.TrackedDownload.RemoteAlbum == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (var album in message.TrackedDownload.RemoteAlbum.Albums)
|
||||
{
|
||||
var history = new EntityHistory
|
||||
|
|
|
|||
Loading…
Reference in a new issue