Open GoogleCodeExporter opened 9 years ago
[deleted comment]
[deleted comment]
[deleted comment]
I tried to fix ivr_menu.lua and seems it works for me with right behaviour
after failed tries exceeded.
No warranty from me - I not have any expirience in LUA language.
Make backup of ivr_menu.lua before make changes.
Find:
if (string.len(dtmf_digits) > 0) then
freeswitch.consoleLog("notice", "[ivr_menu] dtmf_digits: " .. dtmf_digits .. "\n");
menu_options(session, dtmf_digits);
else
Change to:
if (string.len(dtmf_digits) > 0) then
if (tries <= (tonumber(ivr_menu_max_failures)+1)) then
freeswitch.consoleLog("notice", "[ivr_menu] dtmf_digits: " .. dtmf_digits .. "\n");
menu_options(session, dtmf_digits);
I think after update FusionPBX to next release ivr_menu.lua will be replaced
from release, so keep your own script version for backup.
Original comment by blessen...@gmail.com
on 23 Sep 2014 at 2:55
Original issue reported on code.google.com by
James.O....@gmail.com
on 15 Dec 2013 at 9:50