diff options
-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())); } |