stephb9959
2023-10-03 08:51:12 -07:00
parent 16f8f788d5
commit 23120feb82

View File

@@ -101,7 +101,9 @@ namespace OpenWifi {
auto VarNames = VariableBlockInfo->getNames(); auto VarNames = VariableBlockInfo->getNames();
for (const auto &j: VarNames) { for (const auto &j: VarNames) {
std::cout << "Name: " << j << std::endl; std::cout << "Name: " << j << std::endl;
Result->set(j, VariableBlockInfo->get(j)); Poco::JSON::Object::Ptr InnerEval;
ReplaceVariablesInObject(VariableBlockInfo->getObject(j),InnerEval);
Result->set(j, InnerEval);
} }
} }
} }