mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: Infinite loop when HTTP error occurs
This commit is contained in:
parent
3186833a44
commit
be8a20752b
1 changed files with 12 additions and 7 deletions
|
@ -356,6 +356,8 @@ void CDownloader::onHeadFinished()
|
|||
|
||||
void CDownloader::onDownloadFinished()
|
||||
{
|
||||
int status = m_reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
|
||||
|
||||
m_reply->deleteLater();
|
||||
m_reply = NULL;
|
||||
|
||||
|
@ -367,11 +369,18 @@ void CDownloader::onDownloadFinished()
|
|||
}
|
||||
else
|
||||
{
|
||||
bool ok = NLMISC::CFile::setFileModificationDate(m_fullPath.toUtf8().constData(), m_lastModified.toTime_t());
|
||||
if (QFileInfo(m_fullPath).size() == m_size)
|
||||
{
|
||||
bool ok = NLMISC::CFile::setFileModificationDate(m_fullPath.toUtf8().constData(), m_lastModified.toTime_t());
|
||||
|
||||
if (m_listener) m_listener->operationSuccess(m_size);
|
||||
if (m_listener) m_listener->operationSuccess(m_size);
|
||||
|
||||
emit downloadDone();
|
||||
emit downloadDone();
|
||||
}
|
||||
else
|
||||
{
|
||||
m_listener->operationFail(tr("HTTP error: %1").arg(status));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -383,10 +392,6 @@ void CDownloader::onError(QNetworkReply::NetworkError error)
|
|||
{
|
||||
m_listener->operationStop();
|
||||
}
|
||||
else
|
||||
{
|
||||
m_listener->operationFail(tr("Network error: %1").arg(error));
|
||||
}
|
||||
}
|
||||
|
||||
void CDownloader::onDownloadProgress(qint64 current, qint64 total)
|
||||
|
|
Loading…
Reference in a new issue