From 000023aae3e920f89c78a83a9717e0dc0f11c01c Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 19 May 2011 03:46:13 +0200 Subject: [PATCH] [download][qt] SSL errors are ignored --- platform/qt_download.cpp | 1 + 1 file changed, 1 insertion(+) 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)),