Fixed error when downloading a movie.

pull/2/head
Leonardo Galli 8 years ago
parent 79307d3c25
commit 499e46e10a

@ -92,6 +92,10 @@ namespace NzbDrone.Core.DecisionEngine
}
}
else
{
_logger.Trace("{0} could not be parsed :(.", report.Title);
}
}
catch (Exception e)
{

@ -426,7 +426,7 @@ namespace NzbDrone.Core.Parser
movie = _movieService.FindByImdbId(imdbId);
//Should fix practically all problems, where indexer is shite at adding correct imdbids to movies.
if (parsedMovieInfo.Year > 1800 && parsedMovieInfo.Year != movie.Year)
if (movie != null && parsedMovieInfo.Year > 1800 && parsedMovieInfo.Year != movie.Year)
{
movie = null;
}

Loading…
Cancel
Save