aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/DeviceIcon.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/Common/DeviceIcon.cs')
-rw-r--r--Emby.Dlna/Common/DeviceIcon.cs11
1 files changed, 10 insertions, 1 deletions
diff --git a/Emby.Dlna/Common/DeviceIcon.cs b/Emby.Dlna/Common/DeviceIcon.cs
index 3a91b952e..49d19992d 100644
--- a/Emby.Dlna/Common/DeviceIcon.cs
+++ b/Emby.Dlna/Common/DeviceIcon.cs
@@ -1,3 +1,7 @@
+#pragma warning disable CS1591
+#pragma warning disable SA1600
+
+using System.Globalization;
namespace Emby.Dlna.Common
{
@@ -13,9 +17,14 @@ namespace Emby.Dlna.Common
public string Depth { get; set; }
+ /// <inheritdoc />
public override string ToString()
{
- return string.Format("{0}x{1}", Height, Width);
+ return string.Format(
+ CultureInfo.InvariantCulture,
+ "{0}x{1}",
+ Height,
+ Width);
}
}
}