[downloader] Fixed progress

This commit is contained in:
Alex Zolotarev 2011-11-21 20:39:20 +03:00 committed by Alex Zolotarev
parent 9add6182c7
commit a62f298df5

View file

@ -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)