Browse Source

set original title in tmdbmovieprovider

Claus Vium 4 years ago
parent
commit
28a0eb6d53
1 changed files with 1 additions and 0 deletions
  1. 1 0
      MediaBrowser.Providers/Plugins/Tmdb/Movies/TmdbMovieProvider.cs

+ 1 - 0
MediaBrowser.Providers/Plugins/Tmdb/Movies/TmdbMovieProvider.cs

@@ -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()