Skip to content

Commit

Permalink
Fix wfs3 template with string fids
Browse files Browse the repository at this point in the history
Fixes #42275
  • Loading branch information
elpaso committed Mar 16, 2021
1 parent f80a754 commit cafff9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgsserverogcapihandler.cpp
Expand Up @@ -313,7 +313,7 @@ void QgsServerOgcApiHandler::htmlDump( const json &data, const QgsServerApiConte
{ {
fName.chop( 1 ); fName.chop( 1 );
} }
fName += '/' + QString::number( args.at( 0 )->get<QgsFeatureId>( ) ); fName += '/' + QString::fromStdString( args.at( 0 )->get<std::string>( ) );
if ( !suffix.isEmpty() ) if ( !suffix.isEmpty() )
{ {
fName += '.' + suffix; fName += '.' + suffix;
Expand Down

0 comments on commit cafff9f

Please sign in to comment.