diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-11-01 23:04:49 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-11-01 23:04:49 +0100 |
commit | e5da2e36c7b1787959d6ee829284c19297816de6 (patch) | |
tree | b8d3e8349ac6fb2a9f8feaf2a01714d8fcb37c1e /api | |
parent | e44a0cb9445f79e221efcdb4fbef19353a8801f1 (diff) | |
download | MultiMC-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')
-rw-r--r-- | api/logic/net/Download.cpp | 1 |
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())); } |