Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix for retrival of WFS capabilities
git-svn-id: http://svn.osgeo.org/qgis/trunk@13299 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Apr 11, 2010
1 parent cabf493 commit 04f5190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgshttptransaction.cpp
Expand Up @@ -206,7 +206,7 @@ bool QgsHttpTransaction::getSynchronously( QByteArray &respondedContent, int red
http = 0;

// Did we get an error? If so, bail early
if ( !mError.isNull() )
if ( !mError.isEmpty() )
{
QgsDebugMsg( "Processing an error '" + mError + "'." );
return FALSE;
Expand Down

0 comments on commit 04f5190

Please sign in to comment.