Skip to content

Commit

Permalink
Merge pull request #10013 from elpaso/wfs3-ogr-client-fix
Browse files Browse the repository at this point in the history
Fix WFS3 OGR build URI
  • Loading branch information
elpaso committed May 15, 2019
2 parents 607664c + a3d4055 commit 7df3163
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/ogr/qgsogrhelperfunctions.cpp
Expand Up @@ -269,7 +269,8 @@ QString createProtocolURI( const QString &type, const QString &url, const QStri
{
uri = QStringLiteral( "DODS:%1" ).arg( url );
}
else if ( type == QLatin1String( "WFS3" ) )
// Check beginning because of "experimental"
else if ( type.startsWith( QLatin1String( "WFS3" ) ) )
{
uri = QStringLiteral( "WFS3:%1" ).arg( url );
}
Expand Down

0 comments on commit 7df3163

Please sign in to comment.