Count a going to voicemail as a missed call.

This commit is contained in:
FusionPBX
2021-06-15 12:20:04 -06:00
committed by GitHub
parent 13c5d984f2
commit 3e2ae03295

View File

@@ -346,6 +346,9 @@ if (!class_exists('xml_cdr')) {
if ($xml->variables->missed_call == 'true') {
$missed_call = 'true';
}
if ($xml->variables->voicemail_action == "save"){
$missed_call = 'true';
}
//misc
$uuid = urldecode($xml->variables->uuid);