Skip to content

Commit a3a1204

Browse files
committed
[Server] Null field value in GML has to be empty string
1 parent 83df334 commit a3a1204

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/qgswfsserver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2242,7 +2242,7 @@ QDomElement QgsWFSServer::createFeatureGML3( QgsFeature* feat, QDomDocument& doc
22422242
QString QgsWFSServer::encodeValueToText( const QVariant& value )
22432243
{
22442244
if ( value.isNull() )
2245-
return "null";
2245+
return QString();
22462246

22472247
switch ( value.type() )
22482248
{

0 commit comments

Comments
 (0)