Skip to content

Commit

Permalink
[processing] Fix regression in native:tilesxyzmbtiles alg
Browse files Browse the repository at this point in the history
Restore "description" metadata
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Dec 26, 2024
1 parent b8f72f8 commit 017d237
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/analysis/processing/qgsalgorithmxyztiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ QVariantMap QgsXyzTilesMbtilesAlgorithm::processAlgorithm( const QVariantMap &pa
}
mMbtilesWriter->setMetadataValue( "format", mTileFormat.toLower() );
mMbtilesWriter->setMetadataValue( "name", QFileInfo( outputFile ).baseName() );
mMbtilesWriter->setMetadataValue( "description", QFileInfo( outputFile ).baseName() );
mMbtilesWriter->setMetadataValue( "version", QStringLiteral( "1.1" ) );
mMbtilesWriter->setMetadataValue( "type", QStringLiteral( "overlay" ) );
mMbtilesWriter->setMetadataValue( "minzoom", QString::number( mMinZoom ) );
Expand Down

0 comments on commit 017d237

Please sign in to comment.