Skip to content

Commit

Permalink
https://telecominfraproject.atlassian.net/browse/WIFI-7831
Browse files Browse the repository at this point in the history
Signed-off-by: stephb9959 <[email protected]>
  • Loading branch information
stephb9959 committed Oct 3, 2023
1 parent 05ddc25 commit b4f5f8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/APConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ namespace OpenWifi {
std::cout << "Array!!!" << std::endl;
} else if(VariableBlockInfo->isObject(j)) {
std::cout << "Visiting object " << j << std::endl;
ReplaceVariablesInObject(VariableBlockInfo->getObject(j),InnerEval);
auto O = VariableBlockInfo->getObject(j);
ReplaceVariablesInObject(O,InnerEval);
Result->set(j, InnerEval);
} else {
Result->set(j, VariableBlockInfo->get(j));
Expand Down

0 comments on commit b4f5f8b

Please sign in to comment.