Skip to content

Commit

Permalink
Merge pull request #607 from Redpenguine/master
Browse files Browse the repository at this point in the history
fix: incorrect download progress reporting
  • Loading branch information
neuecc authored Aug 14, 2024
2 parents f057abf + a2f6f84 commit 9057452
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public bool MoveNext()

if (progress != null && handle.IsValid())
{
progress.Report(handle.PercentComplete);
progress.Report(handle.GetDownloadStatus().Percent);
}

return true;
Expand Down Expand Up @@ -448,7 +448,7 @@ public bool MoveNext()

if (progress != null && handle.IsValid())
{
progress.Report(handle.PercentComplete);
progress.Report(handle.GetDownloadStatus().Percent);
}

return true;
Expand Down

0 comments on commit 9057452

Please sign in to comment.