From 96874c19b8d1ea220477405de547409c22ff2b20 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 20 Sep 2025 18:28:52 -0600 Subject: [PATCH] Update call_flow_monitor.lua boolean --- app/switch/resources/scripts/call_flow_monitor.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/switch/resources/scripts/call_flow_monitor.lua b/app/switch/resources/scripts/call_flow_monitor.lua index 2368adb647..2d11a465f5 100644 --- a/app/switch/resources/scripts/call_flow_monitor.lua +++ b/app/switch/resources/scripts/call_flow_monitor.lua @@ -60,7 +60,8 @@ local sql = "select d.domain_name, f.call_flow_uuid, f.call_flow_extension, f.call_flow_feature_code," .. "f.call_flow_status, f.call_flow_label, f.call_flow_alternate_label ".. "from v_call_flows as f, v_domains as d " .. - "where f.domain_uuid = d.domain_uuid " -- and call_flow_enabled = 'true' + "where f.domain_uuid = d.domain_uuid " .. + "and call_flow_enabled = true " while true do -- debug print if (debug["sql"]) then