Update disa.lua (#4775)

it pulling the caller id name for the number
This commit is contained in:
mtghr 2019-10-13 19:13:53 -04:00 committed by FusionPBX
parent 81caa972d9
commit f525ba0730
1 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@
if (caller_id_name) then
--caller id name provided do nothing
else
caller_id_number = session:getVariable("effective_caller_id_name");
caller_id_number = session:getVariable("effective_caller_id_number");
end
if (caller_id_number) then
--caller id number provided do nothing
@ -169,7 +169,7 @@
if (caller_id_name) then
--caller id name provided do nothing
else
caller_id_number = session:getVariable("outbound_caller_id_name");
caller_id_number = session:getVariable("outbound_caller_id_number");
end
if (caller_id_number) then
--caller id number provided do nothing