Should fix queueService failed while processing

(#178)
This commit is contained in:
Leonardo Galli 2017-01-12 21:48:02 +01:00
parent 1b035f8657
commit 84112dc85b
1 changed files with 5 additions and 1 deletions

View File

@ -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)
{