diff options
| author | Bond_009 <Bond.009@outlook.com> | 2020-08-07 19:26:28 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-08-19 17:50:50 +0200 |
| commit | 2b400c99ef946ef1e52e3f01cb18bc008a369c59 (patch) | |
| tree | 9a62d2b991840d5c2c2403d1e2acb34e7aee4d5d /MediaBrowser.Controller/Entities/Trailer.cs | |
| parent | 634ee2d1e913277ea8f419aca9d91a8e58426642 (diff) | |
Fix warnings
Diffstat (limited to 'MediaBrowser.Controller/Entities/Trailer.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Trailer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Trailer.cs b/MediaBrowser.Controller/Entities/Trailer.cs index 6b544afc6..83e9ce1e7 100644 --- a/MediaBrowser.Controller/Entities/Trailer.cs +++ b/MediaBrowser.Controller/Entities/Trailer.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.Globalization; using System.Text.Json.Serialization; using Jellyfin.Data.Enums; using MediaBrowser.Controller.Providers; @@ -86,7 +87,7 @@ namespace MediaBrowser.Controller.Entities list.Add(new ExternalUrl { Name = "Trakt", - Url = string.Format("https://trakt.tv/movies/{0}", imdbId) + Url = string.Format(CultureInfo.InvariantCulture, "https://trakt.tv/movies/{0}", imdbId) }); } |
