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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

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);