fix naming issue in last mod_managed change - trivial
This commit is contained in:
parent
a9d72bc35d
commit
528d10319f
|
@ -145,7 +145,7 @@ namespace FreeSWITCH.Native
|
||||||
switch_state_handler_t_delegate del = ptr => {
|
switch_state_handler_t_delegate del = ptr => {
|
||||||
using (var sess = new ManagedSession(new SWIGTYPE_p_switch_core_session(ptr, false))) {
|
using (var sess = new ManagedSession(new SWIGTYPE_p_switch_core_session(ptr, false))) {
|
||||||
handler(sess);
|
handler(sess);
|
||||||
sess.setAutoHangup(false);
|
sess.SetAutoHangup(false);
|
||||||
sess.destroy();
|
sess.destroy();
|
||||||
return switch_status_t.SWITCH_STATUS_SUCCESS;
|
return switch_status_t.SWITCH_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue