mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
increased delete folder limit size to 10MB
This commit is contained in:
parent
931bb2ea12
commit
68321c98d0
3 changed files with 11 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue