mirror of https://github.com/procxx/kepka.git
Fix file upload progress display.
Regression was introduced in 5d18d7c813
.
This commit is contained in:
parent
a00941f7ce
commit
1a115cc7e5
|
@ -476,7 +476,7 @@ void Uploader::partLoaded(const MTPBool &result, mtpRequestId requestId) {
|
||||||
if (document->uploading()) {
|
if (document->uploading()) {
|
||||||
const auto doneParts = file.docSentParts
|
const auto doneParts = file.docSentParts
|
||||||
- int(docRequestsSent.size());
|
- int(docRequestsSent.size());
|
||||||
document->uploadingData->offset = std::max(
|
document->uploadingData->offset = std::min(
|
||||||
document->uploadingData->size,
|
document->uploadingData->size,
|
||||||
doneParts * file.docPartSize);
|
doneParts * file.docPartSize);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue