mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
Additional fix on not sending additional digits
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@697 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
dsp.c
2
dsp.c
@@ -1142,7 +1142,7 @@ struct ast_frame *ast_dsp_process(struct ast_channel *chan, struct ast_dsp *dsp,
|
|||||||
if (digit) {
|
if (digit) {
|
||||||
/* Thought we saw one last time. Pretty sure we really have now */
|
/* Thought we saw one last time. Pretty sure we really have now */
|
||||||
if (dsp->thinkdigit) {
|
if (dsp->thinkdigit) {
|
||||||
if (dsp->thinkdigit != 'x') {
|
if ((dsp->thinkdigit != 'x') && (dsp->thinkdigit != digit)) {
|
||||||
/* If we found a digit, and we're changing digits, go
|
/* If we found a digit, and we're changing digits, go
|
||||||
ahead and send this one, but DON'T stop confmute because
|
ahead and send this one, but DON'T stop confmute because
|
||||||
we're detecting something else, too... */
|
we're detecting something else, too... */
|
||||||
|
|||||||
Reference in New Issue
Block a user