Skip to content

Commit 2e55a15

Browse files
committed
ignore no ssl error error
1 parent abbe25f commit 2e55a15

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/app/qgisapp.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -8035,6 +8035,9 @@ void QgisApp::namSslErrors( QNetworkReply *reply, const QList<QSslError> &errors
80358035

80368036
foreach ( QSslError error, errors )
80378037
{
8038+
if ( error.error() == QSslError::NoError )
8039+
continue;
8040+
80388041
QgsDebugMsg( QString( "SSL error %1: %2" ).arg( error.error() ).arg( error.errorString() ) );
80398042

80408043
otherError = otherError || !ignoreErrors.contains( error.error() );

0 commit comments

Comments
 (0)