[storage] Fixed HttpMapFilesDownloader::IsIdle() method.

This commit is contained in:
Yuri Gorshenin 2015-06-24 14:28:16 +03:00 committed by Alex Zolotarev
parent feaed63782
commit a717005c98

View file

@ -43,7 +43,7 @@ MapFilesDownloader::TProgress HttpMapFilesDownloader::GetDownloadingProgress()
bool HttpMapFilesDownloader::IsIdle()
{
ASSERT(m_checker.CalledOnOriginalThread(), ());
return m_request.get() != nullptr;
return m_request.get() == nullptr;
}
void HttpMapFilesDownloader::Reset()