From 57293490571a4a9b28914d6bc19b6dfcce92d6df Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 20 Sep 2025 18:13:11 -0600 Subject: [PATCH] Update route_to_bridge dialplan enabled boolean --- .../resources/scripts/resources/functions/route_to_bridge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/switch/resources/scripts/resources/functions/route_to_bridge.lua b/app/switch/resources/scripts/resources/functions/route_to_bridge.lua index 47152ef131..bcafe1f065 100644 --- a/app/switch/resources/scripts/resources/functions/route_to_bridge.lua +++ b/app/switch/resources/scripts/resources/functions/route_to_bridge.lua @@ -68,7 +68,7 @@ FROM v_dialplans as d, v_dialplan_details as s WHERE (d.domain_uuid = :domain_uuid OR d.domain_uuid IS NULL) AND (d.hostname = :hostname OR d.hostname IS NULL) AND d.app_uuid = '8c914ec3-9fc0-8ab5-4cda-6c9288bdc9a3' - AND d.dialplan_enabled = 'true' + AND d.dialplan_enabled = true AND d.dialplan_uuid = s.dialplan_uuid ORDER BY d.dialplan_order ASC,