summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJosh Roberson <josh@asteriasgi.com>2006-02-13 17:50:53 +0000
committerJosh Roberson <josh@asteriasgi.com>2006-02-13 17:50:53 +0000
commitc09ad4e192b09a2a7bfdaed78af54b8ff4e4b1ef (patch)
tree03018e8f0d6a5759a0a5831f9b7bbf4accbc0c78 /apps
parent4d3c5e39b08e79621d9e4eb191079f9ed2a4d106 (diff)
Don't set the formats before we stop indications. (issue #6380)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9759 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index ce233e3ca..d6dd2990f 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -985,6 +985,8 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
}
}
+ ast_indicate(chan, -1);
+
if (ast_set_write_format(chan, AST_FORMAT_SLINEAR) < 0) {
ast_log(LOG_WARNING, "Unable to set '%s' to write linear mode\n", chan->name);
goto outrun;
@@ -995,7 +997,6 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
goto outrun;
}
- ast_indicate(chan, -1);
retryzap = strcasecmp(chan->tech->type, "Zap");
user->zapchannel = !retryzap;