forked from organicmaps/organicmaps
Fixed bug with bookmarks duplication
This commit is contained in:
parent
dbe193dff0
commit
0c7495af63
1 changed files with 5 additions and 1 deletions
|
@ -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) &&
|
||||
|
|
Loading…
Add table
Reference in a new issue