Skip to content

Commit a3d4055

Browse files
committedMay 15, 2019
Fix WFS3 OGR build URI
1 parent 607664c commit a3d4055

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/gui/ogr/qgsogrhelperfunctions.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ QString createProtocolURI( const QString &type, const QString &url, const QStri
269269
{
270270
uri = QStringLiteral( "DODS:%1" ).arg( url );
271271
}
272-
else if ( type == QLatin1String( "WFS3" ) )
272+
// Check beginning because of "experimental"
273+
else if ( type.startsWith( QLatin1String( "WFS3" ) ) )
273274
{
274275
uri = QStringLiteral( "WFS3:%1" ).arg( url );
275276
}

0 commit comments

Comments
 (0)
Please sign in to comment.