Skip to content

Commit

Permalink
[Server] Null field value in GML has to be empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
rldhont committed Nov 23, 2018
1 parent 83df334 commit a3a1204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgswfsserver.cpp
Expand Up @@ -2242,7 +2242,7 @@ QDomElement QgsWFSServer::createFeatureGML3( QgsFeature* feat, QDomDocument& doc
QString QgsWFSServer::encodeValueToText( const QVariant& value )
{
if ( value.isNull() )
return "null";
return QString();

switch ( value.type() )
{
Expand Down

0 comments on commit a3a1204

Please sign in to comment.