Skip to content
Snippets Groups Projects
Commit 5351df86 authored by Grzegorz Sluja's avatar Grzegorz Sluja Committed by Sukru Senli
Browse files

Remove multiple signaling of incoming DTMF during 3way call

parent 735ca1af
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,8 @@ static int dtmf_info_incoming_request(struct ast_sip_session *session, struct pj
struct ast_frame f = { AST_FRAME_DTMF, };
f.len = duration;
f.subclass.integer = event;
ast_queue_frame(session->channel, &f);
// We handle incoming DTMF in other place, this caused signaling DTMF twice so remove it
//ast_queue_frame(session->channel, &f);
} else {
ast_log(LOG_ERROR, "Invalid DTMF event signal in INFO message.\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment