From d4daa8a0519a7834210b7cd1aa0fa151df148c6e Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 10 Jun 2016 15:01:37 -0500 Subject: [PATCH] FS-9246 #resolve [No Audio after Call transfer ] --- src/switch_rtp.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/switch_rtp.c b/src/switch_rtp.c index f30d82f5b7..0649be6c2d 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -5175,7 +5175,11 @@ static switch_status_t read_rtp_packet(switch_rtp_t *rtp_session, switch_size_t if (rtp_session->flags[SWITCH_RTP_FLAG_USE_TIMER] && rtp_session->timer.interval) { switch_core_timer_sync(&rtp_session->timer); } - + + if (rtp_session->session) { + switch_ivr_parse_all_messages(rtp_session->session); + } + block = 0; }