File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -503,10 +503,10 @@ void QgsGdalUtils::setupProxy()
503
503
if ( settings.value ( QStringLiteral ( " proxy/proxyEnabled" ), false ).toBool () )
504
504
{
505
505
// Get the first configured proxy
506
- QList<QNetworkProxy> proxyes ( QgsNetworkAccessManager::instance ()->proxyFactory ()->queryProxy ( ) );
507
- if ( ! proxyes .isEmpty () )
506
+ QList<QNetworkProxy> proxies ( QgsNetworkAccessManager::instance ()->proxyFactory ()->queryProxy ( ) );
507
+ if ( ! proxies .isEmpty () )
508
508
{
509
- QNetworkProxy proxy ( proxyes .first () );
509
+ QNetworkProxy proxy ( proxies .first () );
510
510
// TODO/FIXME: check excludes (the GDAL config options are global, we need a per-connection config option)
511
511
// QStringList excludes;
512
512
// excludes = settings.value( QStringLiteral( "proxy/proxyExcludedUrls" ), "" ).toStringList();
You can’t perform that action at this time.
0 commit comments