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

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