diff --git a/src/NzbDrone.Core/Download/CompletedDownloadService.cs b/src/NzbDrone.Core/Download/CompletedDownloadService.cs index a70bdca20..2a68c80d2 100644 --- a/src/NzbDrone.Core/Download/CompletedDownloadService.cs +++ b/src/NzbDrone.Core/Download/CompletedDownloadService.cs @@ -109,7 +109,11 @@ namespace NzbDrone.Core.Download if (movie == null) { - movie = _movieService.GetMovie(historyItem.MovieId); + if (historyItem != null) + { + movie = _movieService.GetMovie(historyItem.MovieId); + } + if (movie == null) {