forked from organicmaps/organicmaps
[downloader] Fixed progress
This commit is contained in:
parent
9add6182c7
commit
a62f298df5
1 changed files with 3 additions and 3 deletions
|
@ -133,16 +133,16 @@ class FileHttpRequest : public HttpRequest, public IHttpThreadCallback
|
|||
// remove completed chunk from the list, beg is the key
|
||||
RemoveHttpThreadByKey(begRange);
|
||||
|
||||
ChunksDownloadStrategy::ResultT const result = StartThreads();
|
||||
// report progress
|
||||
if (result == ChunksDownloadStrategy::EDownloadSucceeded
|
||||
|| result == ChunksDownloadStrategy::ENoFreeServers)
|
||||
if (isChunkOk)
|
||||
{
|
||||
m_progress.first += (endRange - begRange);
|
||||
if (m_onProgress)
|
||||
m_onProgress(*this);
|
||||
}
|
||||
|
||||
ChunksDownloadStrategy::ResultT const result = StartThreads();
|
||||
|
||||
if (result == ChunksDownloadStrategy::EDownloadFailed)
|
||||
m_status = EFailed;
|
||||
else if (result == ChunksDownloadStrategy::EDownloadSucceeded)
|
||||
|
|
Loading…
Add table
Reference in a new issue