Fixed an issue where movies which were labelled with an alternative title could not be found.

Fixes #557 Fixes #1387 Probably fixes #1372, probably fixes #555
This commit is contained in:
Leonardo Galli
2017-04-15 14:50:34 +02:00
parent 33b48eec95
commit 32a2407ad1
3 changed files with 12 additions and 5 deletions

View File

@@ -178,7 +178,7 @@ namespace NzbDrone.Core.Parser
return _movieService.FindByTitle(title);
}
var movies = _movieService.FindByTitle(parsedMovieInfo.MovieTitle);
var movies = _movieService.FindByTitle(parsedMovieInfo.MovieTitle, parsedMovieInfo.Year);
if (movies == null)
{