diff --git a/src/gui/creds/shibboleth/shibbolethwebview.cpp b/src/gui/creds/shibboleth/shibbolethwebview.cpp index efae1ad87..41567deda 100644 --- a/src/gui/creds/shibboleth/shibbolethwebview.cpp +++ b/src/gui/creds/shibboleth/shibbolethwebview.cpp @@ -52,6 +52,9 @@ ShibbolethWebView::ShibbolethWebView(AccountPtr account, QWidget* parent) connect(page, SIGNAL(loadFinished(bool)), this, SLOT(slotLoadFinished(bool))); + // Make sure to accept the same SSL certificate issues as the regular QNAM we use for syncing + QObject::connect(page->networkAccessManager(), SIGNAL(sslErrors(QNetworkReply*,QList)), + _account.data(), SLOT(slotHandleSslErrors(QNetworkReply*,QList))); // The Account keeps ownership of the cookie jar, it must outlive this webview. account->lendCookieJarTo(page->networkAccessManager());