From a75513dba982e13a5878ffcb665f533ba642f4c8 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 24 Sep 2025 16:56:01 -0600 Subject: [PATCH] Fix ring group destination call forward and follow me --- app/switch/resources/scripts/app/ring_groups/index.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/switch/resources/scripts/app/ring_groups/index.lua b/app/switch/resources/scripts/app/ring_groups/index.lua index 4a8bdd0188..2c6d0c1224 100644 --- a/app/switch/resources/scripts/app/ring_groups/index.lua +++ b/app/switch/resources/scripts/app/ring_groups/index.lua @@ -662,7 +662,7 @@ end --follow the forwards - if (ring_group_call_forward_enabled == true) then + if (ring_group_call_forward_enabled == 'true') then count, destination_number, toll_allow = get_forward_all(0, row.destination_number, leg_domain_name); else destination_number = row.destination_number; @@ -719,7 +719,7 @@ ---add follow me destinations for key, row in pairs(destinations) do - if (ring_group_follow_me_enabled == true) then + if (ring_group_follow_me_enabled == 'true') then cmd = "user_data ".. row.destination_number .."@" ..row.domain_name.." var follow_me_enabled"; if (api:executeString(cmd) == "true") then @@ -933,7 +933,7 @@ user_exists = row.user_exists; --follow the forwards - if (row.ring_group_call_forward_enabled == true) then + if (row.ring_group_call_forward_enabled == 'true') then count, destination_number = get_forward_all(0, destination_number, leg_domain_name); end