From 53e1440e1de20d88daa72c709da1565ec5744032 Mon Sep 17 00:00:00 2001 From: Zion Dials Date: Fri, 11 Dec 2020 08:55:42 -0500 Subject: [PATCH] Update listen_to_recording.lua Missing message_status to listen to the recording again causes to error out and return to the main menu without it. --- .../app/voicemail/resources/functions/listen_to_recording.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/resources/scripts/app/voicemail/resources/functions/listen_to_recording.lua b/app/scripts/resources/scripts/app/voicemail/resources/functions/listen_to_recording.lua index 821d9b75b2..0b0afd52e7 100644 --- a/app/scripts/resources/scripts/app/voicemail/resources/functions/listen_to_recording.lua +++ b/app/scripts/resources/scripts/app/voicemail/resources/functions/listen_to_recording.lua @@ -193,7 +193,7 @@ --process the dtmf if (session:ready()) then if (dtmf_digits == "1") then - listen_to_recording(message_number, uuid, created_epoch, caller_id_name, caller_id_number); + listen_to_recording(message_number, uuid, created_epoch, caller_id_name, caller_id_number, message_status); elseif (dtmf_digits == "2") then message_saved(voicemail_id, uuid); session:execute("playback", "phrase:voicemail_ack:saved");