fix: fix assigment in pool controller

This commit is contained in:
Matthias Jung
2025-10-09 12:10:27 +02:00
committed by Derek Christ
parent 0f7f89511e
commit 305589c902

View File

@@ -9,7 +9,8 @@
PoolControllerMap::PoolControllerMap(const std::map<StringMapper, PoolController>& pools)
{
mPools = pools;
mPools.clear();
mPools.insert(pools.begin(), pools.end());
}
void PoolControllerMap::clear()