aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dial.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 0cf934515..041a4e663 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -962,7 +962,9 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in,
if (single && CAN_EARLY_BRIDGE(peerflags, in, c))
ast_channel_early_bridge(in, c);
if (!ast_test_flag64(outgoing, OPT_RINGBACK))
- ast_indicate(in, AST_CONTROL_PROGRESS);
+ if (single || (!single && !pa->sentringing)) {
+ ast_indicate(in, AST_CONTROL_PROGRESS);
+ }
break;
case AST_CONTROL_VIDUPDATE:
ast_verb(3, "%s requested a video update, passing it to %s\n", c->name, in->name);