From 9e71d87012b06baa27b821e63466df635deaec23 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 22 Apr 2024 12:16:30 -0600 Subject: [PATCH] Recent Calls hide Lose Race --- app/xml_cdr/resources/dashboard/recent_calls.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/xml_cdr/resources/dashboard/recent_calls.php b/app/xml_cdr/resources/dashboard/recent_calls.php index 34947bf506..25dec02602 100644 --- a/app/xml_cdr/resources/dashboard/recent_calls.php +++ b/app/xml_cdr/resources/dashboard/recent_calls.php @@ -68,6 +68,7 @@ $sql .= "and false \n"; } } + $sql .= "and hangup_cause <> 'LOSE_RACE' "; $sql .= "and start_epoch > ".(time() - 86400)." "; $sql .= "order by start_epoch desc "; $sql .= "limit :recent_limit ";