From 4f6b63703a95a469fe2307ccc3928c3056a5be21 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 18 Nov 2016 10:24:07 -0700 Subject: [PATCH] Update group_call.lua --- .../resources/scripts/directory/action/group_call.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/install/scripts/app/xml_handler/resources/scripts/directory/action/group_call.lua b/resources/install/scripts/app/xml_handler/resources/scripts/directory/action/group_call.lua index cbcf146471..215ffb551f 100644 --- a/resources/install/scripts/app/xml_handler/resources/scripts/directory/action/group_call.lua +++ b/resources/install/scripts/app/xml_handler/resources/scripts/directory/action/group_call.lua @@ -51,7 +51,7 @@ --get the domain_uuid if (domain_name ~= nil) then local sql = "SELECT domain_uuid FROM v_domains "; - sql = sql .. "WHERE domain_name = :domain_name"; + sql = sql .. "WHERE domain_name = :domain_name "; local params = {domain_name = domain_name}; if (debug["sql"]) then freeswitch.consoleLog("notice", "[xml_handler] SQL: " .. sql .. "; params:" .. json.encode(params) .. "\n"); @@ -158,4 +158,4 @@ --send the xml to the console if (debug["xml_string"]) then freeswitch.consoleLog("notice", "[xml_handler] directory:groups:"..domain_name.." XML_STRING: \n" .. XML_STRING .. "\n"); - end \ No newline at end of file + end