aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Studios
diff options
context:
space:
mode:
authorBond_009 <Bond.009@outlook.com>2020-08-07 19:26:28 +0200
committerBond_009 <bond.009@outlook.com>2020-08-19 17:50:50 +0200
commit2b400c99ef946ef1e52e3f01cb18bc008a369c59 (patch)
tree9a62d2b991840d5c2c2403d1e2acb34e7aee4d5d /MediaBrowser.Providers/Studios
parent634ee2d1e913277ea8f419aca9d91a8e58426642 (diff)
Fix warnings
Diffstat (limited to 'MediaBrowser.Providers/Studios')
-rw-r--r--MediaBrowser.Providers/Studios/StudiosImageProvider.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/Studios/StudiosImageProvider.cs b/MediaBrowser.Providers/Studios/StudiosImageProvider.cs
index dad155c815..321153c6be 100644
--- a/MediaBrowser.Providers/Studios/StudiosImageProvider.cs
+++ b/MediaBrowser.Providers/Studios/StudiosImageProvider.cs
@@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
+using System.Globalization;
using System.IO;
using System.Linq;
using System.Net.Http;
@@ -100,7 +101,7 @@ namespace MediaBrowser.Providers.Studios
private string GetUrl(string image, string filename)
{
- return string.Format("https://raw.github.com/MediaBrowser/MediaBrowser.Resources/master/images/imagesbyname/studios/{0}/{1}.jpg", image, filename);
+ return string.Format(CultureInfo.InvariantCulture, "https://raw.github.com/MediaBrowser/MediaBrowser.Resources/master/images/imagesbyname/studios/{0}/{1}.jpg", image, filename);
}
private Task<string> EnsureThumbsList(string file, CancellationToken cancellationToken)