mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Resume download for 2xx HTTP status codes
--HG-- branch : develop
This commit is contained in:
parent
857b60dd82
commit
e9a54a310e
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue