Call Forwarding - No Answer: Adjust failure_handler lua script to capture ALLOTTED_TIMEOUT disposition.

This commit is contained in:
fusionate
2023-12-19 19:44:45 +00:00
parent 4ecae0bc15
commit 7e674efe8b

View File

@@ -190,7 +190,7 @@
end
end
elseif (originate_disposition == "NO_ANSWER") or (sip_code == "sip:480") then
elseif (originate_disposition == "NO_ANSWER") or (originate_disposition == "ALLOTTED_TIMEOUT") or (sip_code == "sip:480") then
--handle NO_ANSWER
forward_no_answer_enabled = session:getVariable("forward_no_answer_enabled");