Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
Fixed primary progress bar not updating on mods download
Browse files Browse the repository at this point in the history
  • Loading branch information
skyecodes committed Apr 12, 2018
1 parent fb5d713 commit 3a27340
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected Void call0() throws IOException {
}
try (BufferedWriter writer = new BufferedWriter(new FileWriter(progressFile, true))) {
for (int i = start; i < max; i++) {
updateProgress(start, max);
updateProgress(i, max);
if (isCancelled()) {
writer.close();
return null;
Expand Down

0 comments on commit 3a27340

Please sign in to comment.