Merge pull request #5671 from jellyfin/tmdbmovieprovider-originaltitle

set original title in tmdbmovieprovider

(cherry picked from commit 7c51d0a50edb5b7664c6ffa718405f09a029cf18)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Bond-009 2021-04-01 17:39:22 +02:00 committed by Joshua M. Boniface
parent d07fe14814
commit 42d702c091

View File

@ -175,6 +175,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
var movie = new Movie
{
Name = movieResult.Title ?? movieResult.OriginalTitle,
OriginalTitle = movieResult.OriginalTitle,
Overview = movieResult.Overview?.Replace("\n\n", "\n", StringComparison.InvariantCulture),
Tagline = movieResult.Tagline,
ProductionLocations = movieResult.ProductionCountries.Select(pc => pc.Name).ToArray()