Merge pull request #2397 from dtzWill/fix/reported-dl-size-with-callback

download: fix size reported to progress bar
This commit is contained in:
Eelco Dolstra
2018-09-04 12:16:51 +02:00
committed by GitHub
+1 -1
View File
@@ -345,7 +345,7 @@ struct CurlDownloader : public Downloader
done = true;
try {
act.progress(result.data->size(), result.data->size());
act.progress(result.bodySize, result.bodySize);
callback(std::move(result));
} catch (...) {
done = true;