diff --git a/Wabbajack.Common/OctoDiff.cs b/Wabbajack.Common/OctoDiff.cs index 132beb0d..98c61041 100644 --- a/Wabbajack.Common/OctoDiff.cs +++ b/Wabbajack.Common/OctoDiff.cs @@ -32,6 +32,8 @@ namespace Wabbajack.Common { public void ReportProgress(string operation, long currentPosition, long total) { + if (currentPosition >= total || total < 1 || currentPosition < 0) + return; Utils.Status(operation, new Percent(total, currentPosition)); } }