Fixed: Populate Info in Lookup Results if Existing Movie

This commit is contained in:
Qstick 2020-01-30 21:44:38 -05:00
parent 63197d38ce
commit c6baff9bce
1 changed files with 13 additions and 1 deletions

View File

@ -523,7 +523,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
var movieResults = response.Resource.results;
return movieResults.SelectList(MapMovie);
return movieResults.SelectList(MapSearchResult);
}
catch (HttpException)
{
@ -536,6 +536,18 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
}
}
private Movie MapSearchResult(MovieResult result)
{
var movie = _movieService.FindByTmdbId(result.id);
if (movie == null)
{
movie = MapMovie(result);
}
return movie;
}
public Movie MapMovie(MovieResult result)
{
var imdbMovie = new Movie();