Make sure the origination_uuid is set

This commit is contained in:
FusionPBX 2024-11-04 08:21:03 -07:00 committed by GitHub
parent 0757245b75
commit baed3947d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -264,7 +264,7 @@
$fax_options = "fax_use_ecm=true,fax_enable_t38=true,fax_enable_t38_request=true,fax_disable_v17=true";
}
else {
//try the user-definable method again
//try the user definable method again
$fax_options = '';
foreach($setting->get('fax','variable') as $variable) {
$fax_options .= $variable.",";
@ -329,6 +329,11 @@
}
}
//set the origination uuid
if (!is_uuid($origination_uuid)) {
$origination_uuid = uuid();
}
//build a list of fax variables
$dial_string = $common_variables;
$dial_string .= $fax_options.",";