forked from lix-project/lix
Merge pull request #2397 from dtzWill/fix/reported-dl-size-with-callback
download: fix size reported to progress bar
This commit is contained in:
commit
5e0a7206f5
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue