From a875676dd2a0b137f870a36be890b8a7c558331f Mon Sep 17 00:00:00 2001 From: Luis Daniel Lucio Quiroz Date: Fri, 22 Nov 2019 21:33:57 -0500 Subject: [PATCH] Missing space (#4893) --- resources/install/scripts/cidlookup.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/install/scripts/cidlookup.lua b/resources/install/scripts/cidlookup.lua index 9f29b9a520..2828e51988 100644 --- a/resources/install/scripts/cidlookup.lua +++ b/resources/install/scripts/cidlookup.lua @@ -87,7 +87,7 @@ sql = "SELECT v_contacts.contact_name_given || ' ' || v_contacts.contact_name_family AS name FROM v_contacts "; end sql = sql .. "INNER JOIN v_contact_phones ON v_contact_phones.contact_uuid = v_contacts.contact_uuid "; - sql = sql .. "INNER JOIN v_destinations ON v_destinations.domain_uuid = v_contacts.domain_uuid AND v_destinations.destination_number = :caller"; + sql = sql .. "INNER JOIN v_destinations ON v_destinations.domain_uuid = v_contacts.domain_uuid AND v_destinations.destination_number = :caller "; local params; if ((not domain_uuid) or (domain_uuid == "")) then