Size formatted culture invariant.

pull/4/head
Taloth Saldono 10 years ago
parent 3244f71e5c
commit d931626aee

@ -1,4 +1,5 @@
using System; using System;
using System.Globalization;
namespace NzbDrone.Common.Extensions namespace NzbDrone.Common.Extensions
{ {
@ -16,7 +17,7 @@ namespace NzbDrone.Common.Extensions
var mag = (int)Math.Log(bytes, bytesInKb); var mag = (int)Math.Log(bytes, bytesInKb);
var adjustedSize = bytes / (decimal)Math.Pow(bytesInKb, mag); var adjustedSize = bytes / (decimal)Math.Pow(bytesInKb, mag);
return string.Format("{0:n1} {1}", adjustedSize, SizeSuffixes[mag]); return string.Format(CultureInfo.InvariantCulture, "{0:n1} {1}", adjustedSize, SizeSuffixes[mag]);
} }
} }
} }

Loading…
Cancel
Save