Fix a bug where transfer is part of recording name

This commit is contained in:
FusionPBX
2024-12-10 13:45:26 -07:00
committed by GitHub
parent c36455e28f
commit 312c8659af

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