1
0
mirror of synced 2024-11-28 01:20:51 +01:00

fix: Bookmarks not being loaded correctly when multiple providers are in project

This commit is contained in:
WerWolv 2023-07-01 12:27:50 +02:00
parent 730e67881b
commit 301418c728

View File

@ -116,7 +116,7 @@ namespace hex::plugin::builtin {
return true;
auto data = nlohmann::json::parse(fileContent.begin(), fileContent.end());
this->m_bookmarks->clear();
this->m_bookmarks.get(provider).clear();
return this->importBookmarks(provider, data);
},
.store = [this](prv::Provider *provider, const std::fs::path &basePath, Tar &tar) -> bool {