mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
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:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user