Parse size to decimal using en-US culture.

pull/3113/head
Mark McDowall 13 years ago
parent 2bf97fd76f
commit 91d3d522ec

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Globalization;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
@ -421,7 +422,8 @@ namespace NzbDrone.Core
if (match.Count != 0) if (match.Count != 0)
{ {
var value = Convert.ToDecimal(Regex.Replace(match[0].Groups["value"].Value, "\\,", "")); var cultureInfo = new CultureInfo("en-US");
var value = Decimal.Parse(Regex.Replace(match[0].Groups["value"].Value, "\\,", ""), cultureInfo);
var unit = match[0].Groups["unit"].Value; var unit = match[0].Groups["unit"].Value;

Loading…
Cancel
Save