Skip to content

Commit

Permalink
Merge pull request #38191 from qgis/bugfix-unreported-pg-raster-port-…
Browse files Browse the repository at this point in the history
…host

PG raster: fix unreported port/host mismatch
  • Loading branch information
elpaso committed Aug 7, 2020
2 parents 0f14362 + 9c8a2ca commit c23bc1f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -554,7 +554,7 @@ QVariantMap QgsPostgresRasterProviderMetadata::decodeUri( const QString &uri )
}
if ( ! dsUri.port().isEmpty() )
{
decoded[ QStringLiteral( "port" ) ] = dsUri.host();
decoded[ QStringLiteral( "port" ) ] = dsUri.port();
}
if ( ! dsUri.service().isEmpty() )
{
Expand Down

0 comments on commit c23bc1f

Please sign in to comment.