diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs index f8842e4b6e..8665fe5438 100644 --- a/src/NzbDrone.Core/Parser/ParsingService.cs +++ b/src/NzbDrone.Core/Parser/ParsingService.cs @@ -188,7 +188,7 @@ public LocalMovie GetLocalMovie(string filename, ParsedMovieInfo minimalInfo, Mo Path = filename, ParsedMovieInfo = enhanced, ExistingFile = movie.Path.IsParentPath(filename), - MediaInfo = helpers.FirstOrDefault(h => h.GetType() == typeof(MediaInfoModel)) as MediaInfoModel + MediaInfo = helpers.FirstOrDefault(h => h?.GetType() == typeof(MediaInfoModel)) as MediaInfoModel }; }