Skip to content
Snippets Groups Projects
Commit cc36c3d4 authored by Anthony Minessale II's avatar Anthony Minessale II
Browse files

fix D() issue with to short of a duration

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3152 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent a550016f
No related branches found
No related tags found
No related merge requests found
......@@ -857,7 +857,7 @@ static int dial_exec(struct ast_channel *chan, void *data)
chan->whentohangup = now + calldurationlimit;
}
if (!ast_strlen_zero(sdtmfdata))
res = ast_dtmf_stream(peer,chan,sdtmfdata,0);
res = ast_dtmf_stream(peer,chan,sdtmfdata,250);
}
if (!res) {
......
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