Skip to content

Commit

Permalink
Fix WFS3 OGR build URI
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed May 15, 2019
1 parent 607664c commit a3d4055
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 a3d4055

Please sign in to comment.