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
commit 5e0a7206f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;