mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
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:
parent
d07fe14814
commit
42d702c091
@ -175,6 +175,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
|
|||||||
var movie = new Movie
|
var movie = new Movie
|
||||||
{
|
{
|
||||||
Name = movieResult.Title ?? movieResult.OriginalTitle,
|
Name = movieResult.Title ?? movieResult.OriginalTitle,
|
||||||
|
OriginalTitle = movieResult.OriginalTitle,
|
||||||
Overview = movieResult.Overview?.Replace("\n\n", "\n", StringComparison.InvariantCulture),
|
Overview = movieResult.Overview?.Replace("\n\n", "\n", StringComparison.InvariantCulture),
|
||||||
Tagline = movieResult.Tagline,
|
Tagline = movieResult.Tagline,
|
||||||
ProductionLocations = movieResult.ProductionCountries.Select(pc => pc.Name).ToArray()
|
ProductionLocations = movieResult.ProductionCountries.Select(pc => pc.Name).ToArray()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user