Skip to content

Commit

Permalink
PG raster: fix unreported port/host mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Aug 7, 2020
1 parent 0f14362 commit 9c8a2ca
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 9c8a2ca

Please sign in to comment.