From 0c7495af63f3c24680596757f0b67a5d03266037 Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Thu, 17 Jan 2019 13:49:19 +0300 Subject: [PATCH] Fixed bug with bookmarks duplication --- map/bookmark_manager.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/map/bookmark_manager.cpp b/map/bookmark_manager.cpp index 5eb3019e1a..97d67b4bdd 100644 --- a/map/bookmark_manager.cpp +++ b/map/bookmark_manager.cpp @@ -1694,7 +1694,11 @@ BookmarkManager::KMLDataCollectionPtr BookmarkManager::PrepareToSaveBookmarks( { auto * group = GetBmCategory(groupId); - if (group->IsCategoryFromCatalog() && !::IsMyCategory(m_user, group->GetCategoryData())) + // Here we save file in the private directory only if the file is from the catalog, + // the file doesn't belong to the user and the file is not previously saved in the main bookmarks + // directory. + if (group->IsCategoryFromCatalog() && !::IsMyCategory(m_user, group->GetCategoryData()) && + !GetPlatform().IsFileExistsByFullPath(group->GetFileName())) { auto const privateFileDir = GetPrivateBookmarksDirectory(); if (!GetPlatform().IsFileExistsByFullPath(privateFileDir) &&