Skip to content

Commit

Permalink
ignore no ssl error error
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Nov 15, 2012
1 parent abbe25f commit 2e55a15
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/qgisapp.cpp
Expand Up @@ -8035,6 +8035,9 @@ void QgisApp::namSslErrors( QNetworkReply *reply, const QList<QSslError> &errors

foreach ( QSslError error, errors )
{
if ( error.error() == QSslError::NoError )
continue;

QgsDebugMsg( QString( "SSL error %1: %2" ).arg( error.error() ).arg( error.errorString() ) );

otherError = otherError || !ignoreErrors.contains( error.error() );
Expand Down

0 comments on commit 2e55a15

Please sign in to comment.