From c229d73ddc929559f4d3a6883843949b5d431fd1 Mon Sep 17 00:00:00 2001 From: ta264 Date: Sat, 23 Mar 2019 00:43:09 +0000 Subject: [PATCH] Fixed: NullReferenceException in NotificationService (#695) --- src/NzbDrone.Core/Notifications/NotificationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index f1344dcbf..da69c88ad 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -244,7 +244,7 @@ namespace NzbDrone.Core.Notifications // TODO: Build out this message so that we can pass on what failed and what was successful var downloadMessage = new AlbumDownloadMessage { - Message = GetAlbumIncompleteImportMessage(message.TrackedDownload.RemoteAlbum.Release.Title), + Message = GetAlbumIncompleteImportMessage(message.TrackedDownload.DownloadItem.Title), }; foreach (var notification in _notificationFactory.OnDownloadFailureEnabled())