Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #42802 from qgis/backport-42771-to-release-3_18
Browse files Browse the repository at this point in the history
[Backport release-3_18] [Server] QgsServerFeatureId use combine expression in update feature request
  • Loading branch information
m-kuhn committed Apr 16, 2021
2 parents 515138c + cf2baa4 commit d00cd4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/qgsserverfeatureid.cpp
Expand Up @@ -59,7 +59,7 @@ QgsFeatureRequest QgsServerFeatureId::updateFeatureRequestFromServerFids( QgsFea

if ( expList.count() == 1 )
{
featureRequest.setFilterExpression( expList.at( 0 ) );
featureRequest.combineFilterExpression( expList.at( 0 ) );
}
else
{
Expand All @@ -74,7 +74,7 @@ QgsFeatureRequest QgsServerFeatureId::updateFeatureRequestFromServerFids( QgsFea
fullExpression.append( exp );
fullExpression.append( QStringLiteral( " )" ) );
}
featureRequest.setFilterExpression( fullExpression );
featureRequest.combineFilterExpression( fullExpression );
}

return featureRequest;
Expand Down

0 comments on commit d00cd4d

Please sign in to comment.