workspacerules: overwrite on existing

This commit is contained in:
vaxerski 2023-05-12 01:15:32 +01:00
parent 86ef85efae
commit 413a36a914

View file

@ -1125,7 +1125,12 @@ void CConfigManager::handleWorkspaceRules(const std::string& command, const std:
wsRule.workspaceId = id; wsRule.workspaceId = id;
wsRule.workspaceName = name; wsRule.workspaceName = name;
const auto IT = std::find_if(m_dWorkspaceRules.begin(), m_dWorkspaceRules.end(), [&](const auto& other) { return other.workspaceString == wsRule.workspaceString; });
if (IT == m_dWorkspaceRules.end())
m_dWorkspaceRules.emplace_back(wsRule); m_dWorkspaceRules.emplace_back(wsRule);
else
*IT = wsRule;
} }
void CConfigManager::handleSubmap(const std::string& command, const std::string& submap) { void CConfigManager::handleSubmap(const std::string& command, const std::string& submap) {