Fixes a few things with importing: Sample check is done even when file is already in movie folder. Fixed importing of movies with "DC".

This commit is contained in:
Leonardo Galli
2017-01-10 16:23:07 +01:00
parent 236e16c9a5
commit 52fb29ee18
4 changed files with 9 additions and 11 deletions

View File

@@ -192,6 +192,11 @@ namespace NzbDrone.Core.Parser
parsedEpisodeInfo.MovieTitleInfo.Year);
}
if (series == null)
{
series = _movieService.FindByTitle(parsedEpisodeInfo.MovieTitle.Replace("DC", "").Trim());
}
return series;
}