Skip to content

Commit

Permalink
Avoid filtering of https requests in wfs provider
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@14029 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Aug 8, 2010
1 parent 1f6ffcb commit a22aff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wfs/qgswfsprovider.cpp
Expand Up @@ -191,7 +191,7 @@ int QgsWFSProvider::getFeature( const QString& uri )
QString geometryAttribute;

//Local url or HTTP?
if ( uri.startsWith( "http://" ) )
if ( uri.startsWith( "http" ) )
{
mEncoding = QgsWFSProvider::GET;
}
Expand Down

0 comments on commit a22aff8

Please sign in to comment.