From 8f0763f8120b07994ab28768cac30a720f90ec79 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Tue, 26 Apr 2022 15:08:26 -0700 Subject: [PATCH] Adding new registration processing for signup. --- src/APConfig.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/APConfig.cpp b/src/APConfig.cpp index 3430df4..075ca77 100644 --- a/src/APConfig.cpp +++ b/src/APConfig.cpp @@ -190,7 +190,15 @@ namespace OpenWifi { } else { std::cout << "Element type: " << element.type().name() << std::endl; std::cout << __LINE__ << std::endl; - ResultArray->add(element); +// ResultArray->add(element); + + auto Expanded = Poco::makeShared(); + auto Obj = element.extract(); + std::cout << __LINE__ << std::endl; + ReplaceVariablesInObject(Obj,Expanded); + std::cout << __LINE__ << std::endl; + ResultArray->add(Expanded); + std::cout << __LINE__ << std::endl; } } std::cout << __LINE__ << std::endl;