Fix a bug where transfer is part of recording name

This commit is contained in:
FusionPBX 2024-12-10 13:44:49 -07:00 committed by GitHub
parent 3095bb5a30
commit 414c85eef8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ if (!class_exists('destinations')) {
}
}
//application: hangup
if (!empty($data['application'])) {
if (!empty($data['application']) && $data['application'] === 'hangup') {
$select_value = str_replace("transfer", $data['application'], $select_value);
}
}