From a62f298df5731e3eee7a02c486629d4736bace2b Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Mon, 21 Nov 2011 20:39:20 +0300 Subject: [PATCH] [downloader] Fixed progress --- platform/http_request.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/http_request.cpp b/platform/http_request.cpp index 9fb60ddfde..33792d7f9f 100644 --- a/platform/http_request.cpp +++ b/platform/http_request.cpp @@ -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)