From 5fe75ade561a6a2ffd0ab7c263bbb603263cdd1e Mon Sep 17 00:00:00 2001 From: John Bowdre <61015723+jbowdre@users.noreply.github.com> Date: Tue, 14 Jun 2022 08:50:29 -0500 Subject: [PATCH] Update getConfigValue.js --- .../Actions/com.virtuallypotato.utility/getConfigValue.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Orchestrator/Actions/com.virtuallypotato.utility/getConfigValue.js b/Orchestrator/Actions/com.virtuallypotato.utility/getConfigValue.js index eee38ca..059b581 100644 --- a/Orchestrator/Actions/com.virtuallypotato.utility/getConfigValue.js +++ b/Orchestrator/Actions/com.virtuallypotato.utility/getConfigValue.js @@ -9,4 +9,5 @@ for each (configElement in Server.getConfigurationElementCategoryWithPath(path). if (configElement.name.indexOf(configurationName) === 0) { break; }; } var attribValue = configElement.getAttributeWithKey(variableName).value; + return attribValue;