Fix issue when movie file is null.

This commit is contained in:
Leonardo Galli 2017-01-20 20:30:36 +01:00
commit aa9537c201

View file

@ -44,7 +44,7 @@ namespace NzbDrone.Core.MediaFiles
var existingFile = localEpisode.Movie.MovieFile;
existingFile.LazyLoad();
if (existingFile.IsLoaded)
if (existingFile.IsLoaded && existingFile.Value != null)
{
var file = existingFile.Value;
var episodeFilePath = Path.Combine(localEpisode.Movie.Path, file.RelativePath);