diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index 98af576fc..b4af99a93 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -214,7 +214,7 @@ namespace NzbDrone.Core.Parser } // Only default to not using year when one is parsed if only one movie candidate exists - if (candidates.Count == 1) + if (candidates != null && candidates.Count == 1) { movieByTitleAndOrYear = _movieService.FindByTitle(parsedMovieInfo.MovieTitle, null, arabicTitle, romanTitle, candidates); if (movieByTitleAndOrYear != null)