From 3029fbd5967e3cc46a37ca37ec6d38403ef52701 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Tue, 3 Oct 2023 09:49:25 -0700 Subject: [PATCH] https://telecominfraproject.atlassian.net/browse/WIFI-7831 Signed-off-by: stephb9959 --- src/APConfig.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/APConfig.cpp b/src/APConfig.cpp index d0f3c36..eefe41f 100644 --- a/src/APConfig.cpp +++ b/src/APConfig.cpp @@ -122,10 +122,11 @@ namespace OpenWifi { } } else if (i == "__radiusEndpoint") { DBGLINE - auto EndPointId = Original.get("__radiusEndpoint").toString(); + auto EndPointId = Original.get(i).toString(); DBGLINE ProvObjects::RADIUSEndPoint RE; DBGLINE + std::cout << "ID->" << EndPointId << std::endl; if(!StorageService()->RadiusEndpointDB().GetRecord("id",EndPointId,RE)) { DBGLINE InsertRadiusEndPoint(RE, Result);