mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-06 11:43:50 +00:00
Add more to the missed call check
Only count as a missed call if the bridge_uuid has a length.
This commit is contained in:
@@ -346,7 +346,7 @@ if (!class_exists('xml_cdr')) {
|
||||
if ($xml->variables->missed_call == 'true') {
|
||||
$missed_call = 'true';
|
||||
}
|
||||
if ($xml->variables->voicemail_action == "save"){
|
||||
if ($xml->variables->voicemail_action == "save" && strlen($xml->variables->bridge_uuid) > 0) {
|
||||
$missed_call = 'true';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user