1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

Fixed: Translated fields are mapped incorrectly for existing search results

This commit is contained in:
Qstick 2022-04-26 18:29:15 -05:00
parent 4db6688fe0
commit 89e25a6241

View File

@ -464,7 +464,7 @@ private Movie MapSearchResult(MovieResource result)
}
else
{
movie.MovieMetadata.Value.Translations = _movieTranslationService.GetAllTranslationsForMovie(movie.Id);
movie.MovieMetadata.Value.Translations = _movieTranslationService.GetAllTranslationsForMovie(movie.MovieMetadataId);
}
return movie;