From: François Date: Wed, 3 Dec 2014 09:16:22 +0000 (+0100) Subject: FS-6766, fix verto caller ringback missing on conference bridge X-Git-Tag: v1.4.15^2~61^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=35ba6a33b17036cf7ab3693d3e28d224ce68af55;p=thirdparty%2Ffreeswitch.git FS-6766, fix verto caller ringback missing on conference bridge --- diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index c784d8d1a2..7ad088f780 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -2141,6 +2141,8 @@ static switch_status_t verto_on_init(switch_core_session_t *session) if (switch_channel_direction(tech_pvt->channel) == SWITCH_CALL_DIRECTION_OUTBOUND) { if ((status = verto_connect(tech_pvt->session, "verto.invite")) != SWITCH_STATUS_SUCCESS) { switch_channel_hangup(tech_pvt->channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER); + } else { + switch_channel_mark_ring_ready(tech_pvt->channel); } }