Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow updating SSL cert custom configuration
So far it was only possible to add a first configuration, changing the configuration later on would fail with a unique constraint error.
  • Loading branch information
m-kuhn committed Jul 3, 2018
1 parent ee81016 commit e80cd7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/auth/qgsauthmanager.cpp
Expand Up @@ -1937,7 +1937,7 @@ bool QgsAuthManager::storeSslCertCustomConfig( const QgsAuthConfigSslServer &con
QString certpem( cert.toPem() );

QSqlQuery query( authDatabaseConnection() );
query.prepare( QString( "INSERT INTO %1 (id, host, cert, config) "
query.prepare( QString( "INSERT OR REPLACE INTO %1 (id, host, cert, config) "
"VALUES (:id, :host, :cert, :config)" ).arg( authDatabaseServersTable() ) );

query.bindValue( QStringLiteral( ":id" ), id );
Expand Down

0 comments on commit e80cd7a

Please sign in to comment.