diff --git a/platform/qt_download.cpp b/platform/qt_download.cpp index 658b650711..2ba683fd0a 100644 --- a/platform/qt_download.cpp +++ b/platform/qt_download.cpp @@ -165,6 +165,7 @@ void QtDownload::StartRequest() m_reply = static_cast(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)),