Skip to content

Commit

Permalink
Merge pull request #42769 from rldhont/server-feature-id-string-to-fid
Browse files Browse the repository at this point in the history
[Server] QgsServerFeatureId use STRING_TO_FID instead of toLongLong
  • Loading branch information
elpaso authored and nyalldawson committed Apr 17, 2021
1 parent 178f6a1 commit 33d7eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgsserverfeatureid.cpp
Expand Up @@ -45,7 +45,7 @@ QgsFeatureRequest QgsServerFeatureId::updateFeatureRequestFromServerFids( QgsFea
QgsFeatureIds fids;
for ( const QString &serverFid : serverFids )
{
fids.insert( serverFid.toLongLong() );
fids.insert( STRING_TO_FID( serverFid ) );
}
featureRequest.setFilterFids( fids );
return featureRequest;
Expand Down

0 comments on commit 33d7eef

Please sign in to comment.