From 414c85eef829023cfa8698d663a6396d1ecbd72a Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Tue, 10 Dec 2024 13:44:49 -0700 Subject: [PATCH] Fix a bug where transfer is part of recording name --- app/destinations/resources/classes/destinations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/destinations/resources/classes/destinations.php b/app/destinations/resources/classes/destinations.php index 1c043ba153..6b05c30c64 100644 --- a/app/destinations/resources/classes/destinations.php +++ b/app/destinations/resources/classes/destinations.php @@ -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); } }