diff options
| author | Anthony Lavado <anthonylavado@me.com> | 2020-08-19 17:51:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-19 17:51:46 -0400 |
| commit | 660882c26140113f1a497d0c9520efbc89689b73 (patch) | |
| tree | d5346f99139ef640b3fd2521f764e3af86925643 /MediaBrowser.Controller/LiveTv/LiveTvProgram.cs | |
| parent | 634ee2d1e913277ea8f419aca9d91a8e58426642 (diff) | |
| parent | 5d0a17fd422c983776aa6d2e3a698ad9ffd2c250 (diff) | |
Merge pull request #3841 from Bond-009/warn23
Fix warnings
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/LiveTvProgram.cs')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvProgram.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvProgram.cs b/MediaBrowser.Controller/LiveTv/LiveTvProgram.cs index 472b061e6a..e1de01ff02 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvProgram.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvProgram.cs @@ -261,7 +261,7 @@ namespace MediaBrowser.Controller.LiveTv 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) }); } } |
