summaryrefslogtreecommitdiff
path: root/apps/app_confbridge.c
diff options
context:
space:
mode:
authorDavid Vossel <dvossel@digium.com>2011-06-21 21:55:30 +0000
committerDavid Vossel <dvossel@digium.com>2011-06-21 21:55:30 +0000
commit698bc0257090ddf8f9e930215bbf28b972082271 (patch)
tree4d0e0b67b4089954d82d2cd7cf811523d7fe9a51 /apps/app_confbridge.c
parent09a359449e79ac75385d816e51e50c29293dc78b (diff)
Fixes issue with channel write format being incorrectly restored when MOH is used in confbridge.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@324422 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_confbridge.c')
-rw-r--r--apps/app_confbridge.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c
index 9528bf480..775a628ba 100644
--- a/apps/app_confbridge.c
+++ b/apps/app_confbridge.c
@@ -1362,12 +1362,12 @@ static int confbridge_exec(struct ast_channel *chan, const char *data)
ast_moh_stop(chan);
}
ast_stream_and_wait(chan, join_sound, "");
- if (conference_bridge_user.playing_moh) {
- ast_moh_start(chan, conference_bridge_user.u_profile.moh_class, NULL);
- }
ast_autoservice_start(chan);
play_sound_file(conference_bridge, join_sound);
ast_autoservice_stop(chan);
+ if (conference_bridge_user.playing_moh) {
+ ast_moh_start(chan, conference_bridge_user.u_profile.moh_class, NULL);
+ }
}
/* Join our conference bridge for real */