Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Server][WFS] Null field value in GML has to be empty string
  • Loading branch information
rldhont committed Nov 23, 2018
1 parent f94d08d commit 0e5718d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wfs/qgswfsgetfeature.cpp
Expand Up @@ -1455,7 +1455,7 @@ namespace QgsWfs
QString encodeValueToText( const QVariant &value, const QgsEditorWidgetSetup &setup )
{
if ( value.isNull() )
return QStringLiteral( "null" );
return QString();

if ( setup.type() == QStringLiteral( "DateTime" ) )
{
Expand Down

0 comments on commit 0e5718d

Please sign in to comment.