[download][qt] SSL errors are ignored

This commit is contained in:
Alex Zolotarev 2011-05-19 03:46:13 +02:00 committed by Alex Zolotarev
parent 8311b938e3
commit 000023aae3

View file

@ -165,6 +165,7 @@ void QtDownload::StartRequest()
m_reply = static_cast<QtDownloadManager *>(parent())->NetAccessManager().post(
httpRequest, m_params.m_postData.c_str());
}
m_reply->ignoreSslErrors();
connect(m_reply, SIGNAL(finished()), this, SLOT(OnHttpFinished()));
connect(m_reply, SIGNAL(readyRead()), this, SLOT(OnHttpReadyRead()));
connect(m_reply, SIGNAL(downloadProgress(qint64, qint64)),