mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-26 00:33:24 +00:00
Fix yet another STSO bug... how did this go unnoticed
This commit is contained in:
parent
1ef053a483
commit
840e60b1b5
|
@ -196,14 +196,14 @@ Json::Value get_data(const Json::Value& data,
|
||||||
|
|
||||||
Json::Value out;
|
Json::Value out;
|
||||||
|
|
||||||
for(const auto& key : stso.getMemberNames()) {
|
for(const auto& key : stsh.getMemberNames()) {
|
||||||
out[key] = stso[key];
|
out[key] = stsh[key];
|
||||||
}
|
}
|
||||||
for(const auto& key : stss.getMemberNames()) {
|
for(const auto& key : stss.getMemberNames()) {
|
||||||
out[key] = stss[key];
|
out[key] = stss[key];
|
||||||
}
|
}
|
||||||
for(const auto& key : stsh.getMemberNames()) {
|
for(const auto& key : stso.getMemberNames()) {
|
||||||
out[key] = stsh[key];
|
out[key] = stso[key];
|
||||||
}
|
}
|
||||||
|
|
||||||
return out;
|
return out;
|
||||||
|
|
Loading…
Reference in a new issue