increased delete folder limit size to 10MB

This commit is contained in:
kay.one 2011-07-17 16:15:37 -07:00
commit 68321c98d0
3 changed files with 11 additions and 4 deletions

View file

@ -20,9 +20,14 @@ namespace NzbDrone.Core
}
public static double Megabytes(this int megabytes)
public static Int64 Megabytes(this int megabytes)
{
return megabytes * 1048576;
}
public static Int64 Gigabytes(this int gigabytes)
{
return gigabytes * 1073741824;
}
}
}