Post refactor fixes

This commit is contained in:
KZ
2015-07-28 20:22:23 +01:00
parent 51042e91fc
commit 499b53e9ed
18 changed files with 166 additions and 137 deletions

View File

@@ -176,7 +176,7 @@ namespace Jackett.Indexers
switch (counter)
{
case 0:
this.Size = ReleaseInfo.BytesFromMB(ParseUtil.CoerceLong(val.Substring(0, val.IndexOf(" ") - 1)));
this.Size = ReleaseInfo.GetBytes(val);
break;
case 1:
this.Seeders = ParseUtil.CoerceInt(val.Contains(",") ? val.Remove(val.IndexOf(","), 1) : val);