Changed: Resume download for 2xx HTTP status codes

--HG--
branch : develop
This commit is contained in:
kervala 2016-11-13 16:53:04 +01:00
parent 857b60dd82
commit e9a54a310e

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();
}