Skip to content

Commit 0e5718d

Browse files
committedNov 23, 2018
[Server][WFS] Null field value in GML has to be empty string
1 parent f94d08d commit 0e5718d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/server/services/wfs/qgswfsgetfeature.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1455,7 +1455,7 @@ namespace QgsWfs
14551455
QString encodeValueToText( const QVariant &value, const QgsEditorWidgetSetup &setup )
14561456
{
14571457
if ( value.isNull() )
1458-
return QStringLiteral( "null" );
1458+
return QString();
14591459

14601460
if ( setup.type() == QStringLiteral( "DateTime" ) )
14611461
{

0 commit comments

Comments
 (0)
Please sign in to comment.