Skip to content

Commit

Permalink
String fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 6, 2023
1 parent 71ab3a8 commit 22299c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geocoding/qgsnominatimgeocoder.cpp
Expand Up @@ -152,7 +152,7 @@ QUrl QgsNominatimGeocoder::requestUrl( const QString &address, const QgsRectangl
query.addQueryItem( QStringLiteral( "addressdetails" ), QStringLiteral( "1" ) );
if ( !bounds.isNull() && bounds.isFinite() )
{
query.addQueryItem( QStringLiteral( "viewbox" ), bounds.toString( 7 ).replace( QStringLiteral( " : " ), QStringLiteral( "," ) ) );
query.addQueryItem( QStringLiteral( "viewbox" ), bounds.toString( 7 ).replace( QLatin1String( " : " ), QLatin1String( "," ) ) );
}
if ( !mCountryCodes.isEmpty() )
{
Expand Down

0 comments on commit 22299c6

Please sign in to comment.