diff --git a/Code/Program.cs b/Code/Program.cs index 05b2363..d7c0b37 100644 --- a/Code/Program.cs +++ b/Code/Program.cs @@ -82,7 +82,7 @@ namespace Flowframes Logger.Log($"Disk space check for '{drivePath}/': {(mb / 1024f).ToString("0.0")} GB free.", true); - bool lowDiskSpace = mb < (Config.GetInt("lowDiskSpacePauseGb", 5) * 1024 * 1000); + bool lowDiskSpace = mb < (Config.GetInt("lowDiskSpacePauseGb", 5) * 1024); bool tooLowDiskSpace = mb < (Config.GetInt("lowDiskSpaceCancelGb", 2) * 1024); string spaceGb = (mb / 1024f).ToString("0.0");