From c4c97fee298feacca219ba991a054a7cb0f35dfe Mon Sep 17 00:00:00 2001 From: Alexey Melnichuk Date: Sun, 21 May 2017 10:32:24 +0300 Subject: [PATCH] Fix. Remove using `call_prompt` field. (#2589) It marked as deprecated and do not used anywhere. --- resources/install/scripts/follow_me.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/install/scripts/follow_me.lua b/resources/install/scripts/follow_me.lua index 5dfcad5304..abe1efac92 100644 --- a/resources/install/scripts/follow_me.lua +++ b/resources/install/scripts/follow_me.lua @@ -82,7 +82,7 @@ local follow_me_uuid = row.follow_me_uuid; --determine whether to update the dial string - sql = "select follow_me_enabled, call_prompt, cid_name_prefix, cid_number_prefix, dial_string " + sql = "select follow_me_enabled, cid_name_prefix, cid_number_prefix, dial_string " sql = sql .. "from v_follow_me "; sql = sql .. "where domain_uuid = :domain_uuid "; sql = sql .. "and follow_me_uuid = :follow_me_uuid "; @@ -95,7 +95,6 @@ if not row then return end local enabled = row.follow_me_enabled; - local call_prompt = row.call_prompt; local cid_name_prefix = row.cid_name_prefix; local cid_number_prefix = row.cid_number_prefix; local dial_string = row.dial_string;