mirror of
https://gitlab.com/spaceti-app/integrations/acs/colnod-connector.git
synced 2026-07-12 19:20:37 +02:00
fix for macOS -> must ignore also hostname error
This commit is contained in:
parent
a510938999
commit
339a43c5cf
@ -109,6 +109,8 @@ void RequestManager::onSSLError(QNetworkReply *reply, const QList<QSslError> &er
|
|||||||
{
|
{
|
||||||
if (error.error() == QSslError::SelfSignedCertificate)
|
if (error.error() == QSslError::SelfSignedCertificate)
|
||||||
reply->ignoreSslErrors(errors);
|
reply->ignoreSslErrors(errors);
|
||||||
|
if (error.error() == QSslError::HostNameMismatch)
|
||||||
|
reply->ignoreSslErrors(errors);
|
||||||
qDebug() << error.errorString();
|
qDebug() << error.errorString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user