Fixed: Don't blow up if a tmdbid not in DB is asked for on AllMovie Endpoint

pull/2/head
Qstick 4 years ago
parent 2cbeefba6e
commit eff03a7d2c

@ -106,9 +106,12 @@ namespace Radarr.Api.V3.Movies
if (tmdbId > 0) if (tmdbId > 0)
{ {
var movie = _moviesService.FindByTmdbId(tmdbId); var movie = _moviesService.FindByTmdbId(tmdbId);
var translation = _movieTranslationService.GetAllTranslationsForMovie(movie.Id).Where(t => t.Language == (Language)_configService.MovieInfoLanguage).FirstOrDefault();
moviesResources.AddIfNotNull(movie.ToResource(_qualityUpgradableSpecification, translation)); if (movie != null)
{
var translation = _movieTranslationService.GetAllTranslationsForMovie(movie.Id).Where(t => t.Language == (Language)_configService.MovieInfoLanguage).FirstOrDefault();
moviesResources.AddIfNotNull(movie.ToResource(_qualityUpgradableSpecification, translation));
}
} }
else else
{ {

Loading…
Cancel
Save