Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[IMP] Set continue_on_fail = !USER_BUSY by default
  • Loading branch information
smrdoshi committed May 23, 2018
1 parent bbcc2b8 commit 7eb4a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freeswitch/scripts/astpp/scripts/astpp.xml.lua
Expand Up @@ -46,7 +46,7 @@ function freeswitch_xml_header(xml,destination_number,accountcode,maxlength,call
table.insert(xml, [[<action application="set" data="hangup_after_bridge=true"/>]]);

-- Made it configurable if someone want to set continue_on_fail for specific disposition
local continue_on_fail = 'true'
local continue_on_fail = '!USER_BUSY'
if (config['continue_on_fail'] ~= nil) then
continue_on_fail = config['continue_on_fail']
end
Expand Down

0 comments on commit 7eb4a7d

Please sign in to comment.