summaryrefslogtreecommitdiffstats
path: root/api/logic/net/Download.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-11-01 23:04:49 +0100
committerPetr Mrázek <peterix@gmail.com>2017-11-01 23:04:49 +0100
commite5da2e36c7b1787959d6ee829284c19297816de6 (patch)
treeb8d3e8349ac6fb2a9f8feaf2a01714d8fcb37c1e /api/logic/net/Download.cpp
parente44a0cb9445f79e221efcdb4fbef19353a8801f1 (diff)
downloadMultiMC-e5da2e36c7b1787959d6ee829284c19297816de6.tar
MultiMC-e5da2e36c7b1787959d6ee829284c19297816de6.tar.gz
MultiMC-e5da2e36c7b1787959d6ee829284c19297816de6.tar.lz
MultiMC-e5da2e36c7b1787959d6ee829284c19297816de6.tar.xz
MultiMC-e5da2e36c7b1787959d6ee829284c19297816de6.zip
NOISSUE actually do catch the ssl errors
Diffstat (limited to 'api/logic/net/Download.cpp')
-rw-r--r--api/logic/net/Download.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/logic/net/Download.cpp b/api/logic/net/Download.cpp
index aca0c7d7..fa8421ba 100644
--- a/api/logic/net/Download.cpp
+++ b/api/logic/net/Download.cpp
@@ -102,6 +102,7 @@ void Download::start()
connect(rep, SIGNAL(downloadProgress(qint64, qint64)), SLOT(downloadProgress(qint64, qint64)));
connect(rep, SIGNAL(finished()), SLOT(downloadFinished()));
connect(rep, SIGNAL(error(QNetworkReply::NetworkError)), SLOT(downloadError(QNetworkReply::NetworkError)));
+ connect(rep, SIGNAL(sslErrors(const QList<QSslError> & errors)), SLOT(sslErrors(const QList<QSslError> & errors)));
connect(rep, SIGNAL(readyRead()), SLOT(downloadReadyRead()));
}