Changed: Resume download for 2xx HTTP status codes

This commit is contained in:
kervala 2016-11-13 16:53:04 +01:00
parent 2781f6b011
commit 8247727acb

View file

@ -401,7 +401,7 @@ void CDownloader::onDownloadFinished()
emit downloadDone();
}
else if (status == 206)
else if (status >= 200 && status < 300)
{
if (m_listener) m_listener->operationContinue();
}