From d4ab7ed9bfb427a8e6b188b8a24b9ea93636e003 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 19 Jan 2022 10:33:42 -0700 Subject: [PATCH] Fix the Caller ID name. --- app/scripts/resources/scripts/disa.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/resources/scripts/disa.lua b/app/scripts/resources/scripts/disa.lua index 02ff5a6bb9..fb14622d24 100644 --- a/app/scripts/resources/scripts/disa.lua +++ b/app/scripts/resources/scripts/disa.lua @@ -158,7 +158,7 @@ if (caller_id_name) then --caller id name provided do nothing else - caller_id_number = session:getVariable("effective_caller_id_number"); + caller_id_name = session:getVariable("effective_caller_id_name"); 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_number"); + caller_id_name = session:getVariable("outbound_caller_id_name"); end if (caller_id_number) then --caller id number provided do nothing