From 325da538c30ceb2cbf4589fb03cba08c75afde6c Mon Sep 17 00:00:00 2001 From: Nate Date: Thu, 8 Oct 2020 18:05:20 -0600 Subject: [PATCH] Voicemail: Adjust default greeting to accept * for remote access. --- .../scripts/app/voicemail/resources/functions/play_greeting.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/resources/scripts/app/voicemail/resources/functions/play_greeting.lua b/app/scripts/resources/scripts/app/voicemail/resources/functions/play_greeting.lua index 935e61c834..43480ee639 100644 --- a/app/scripts/resources/scripts/app/voicemail/resources/functions/play_greeting.lua +++ b/app/scripts/resources/scripts/app/voicemail/resources/functions/play_greeting.lua @@ -110,7 +110,7 @@ else voicemail_id_say = voicemail_id; end - dtmf_digits = session:playAndGetDigits(0, 1, 1, 200, "#", "phrase:voicemail_play_greeting:" .. voicemail_id_say, "", "\\d+"); + dtmf_digits = session:playAndGetDigits(0, 1, 1, 200, "#", "phrase:voicemail_play_greeting:" .. voicemail_id_say, "", ".*"); end end end