Open GoogleCodeExporter opened 9 years ago
[deleted comment]
This issue happens because events of the session of the new incoming call are
not handled.
You can prevent this by setting the config (in which the session event handler
is provided) of the new session during the 'i_new_call' session event in the
session event handler:
case 'i_new_call':
if (calling) {
e.newSession.hangup();
}
else {
callSession = e.newSession;
callSession.setConfiguration(callConf); // when this line is omitted, this issue will occur
}
break;
Original comment by mkatw...@gmail.com
on 18 Nov 2014 at 3:16
Original issue reported on code.google.com by
kirk.spe...@gmail.com
on 31 May 2013 at 11:44