[core] Update bookmarks filenames

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-05-23 13:58:47 +07:00
parent 36bb1e3182
commit c4a5979966
6 changed files with 14 additions and 14 deletions

View File

@@ -84,9 +84,9 @@ bool CreateZipFromFiles(std::vector<std::string> const & files, std::vector<std:
if (!strings::IsASCIIString(fileInArchive))
{
if (suffix == 0)
fileInArchive = "OrganicMaps.kml";
fileInArchive = "CoMaps.kml";
else
fileInArchive = "OrganicMaps_" + std::to_string(suffix) + ".kml";
fileInArchive = "CoMaps_" + std::to_string(suffix) + ".kml";
++suffix;
}
zip::FileInfo fileInfo = {};