From 006a790356b958b005a85ab303d3565bdbd8dfb5 Mon Sep 17 00:00:00 2001 From: markjcrane Date: Tue, 27 Jan 2026 17:10:56 -0700 Subject: [PATCH] Fix the greeting transcription --- app/voicemail_greetings/voicemail_greeting_edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/voicemail_greetings/voicemail_greeting_edit.php b/app/voicemail_greetings/voicemail_greeting_edit.php index 6ffbdf2655..0f1bd988a7 100644 --- a/app/voicemail_greetings/voicemail_greeting_edit.php +++ b/app/voicemail_greetings/voicemail_greeting_edit.php @@ -236,7 +236,7 @@ if (!empty($_POST) && empty($_POST["persistformvar"])) { } //audio to text - get the transcription from the audio file - if ($transcribe_enabled && empty($greeting_voice) && empty($greeting_message)) { + if ($transcribe_enabled && empty($greeting_message)) { $transcribe->audio_path = $greeting_path; $transcribe->audio_filename = $greeting_filename; $greeting_message = $transcribe->transcribe('text');