diff options
Diffstat (limited to 'Emby.Dlna/Common/DeviceIcon.cs')
| -rw-r--r-- | Emby.Dlna/Common/DeviceIcon.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Emby.Dlna/Common/DeviceIcon.cs b/Emby.Dlna/Common/DeviceIcon.cs index 3a91b952e..c3f7fa8aa 100644 --- a/Emby.Dlna/Common/DeviceIcon.cs +++ b/Emby.Dlna/Common/DeviceIcon.cs @@ -1,3 +1,6 @@ +#pragma warning disable CS1591 + +using System.Globalization; namespace Emby.Dlna.Common { @@ -13,9 +16,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); } } } |
