]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix MusicOnHold in MeetMe so that it always uses the class if it's been defined
authorJonathan Rose <jrose@digium.com>
Thu, 5 Apr 2012 16:53:35 +0000 (16:53 +0000)
committerJonathan Rose <jrose@digium.com>
Thu, 5 Apr 2012 16:53:35 +0000 (16:53 +0000)
There were a few instances of restarting music on hold in meetme that would cause
Asterisk to revert to the default class of music on hold for no adequate reason.

Review: https://reviewboard.asterisk.org/r/1844/
........

Merged revisions 361269 from http://svn.asterisk.org/svn/asterisk/branches/1.8

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@361270 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_meetme.c

index 6122a55cd3827d1bc350ae5b436318e33979dc4b..a43424a4edcc1bcc08a03d3b4578aaa20d887f58 100644 (file)
@@ -3738,7 +3738,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
                                                                }
                                                                if (musiconhold && mohtempstopped && confsilence > MEETME_DELAYDETECTENDTALK) {
                                                                        mohtempstopped = 0;
-                                                                       ast_moh_start(chan, NULL, NULL);
+                                                                       conf_start_moh(chan, optargs[OPT_ARG_MOH_CLASS]);
                                                                }
                                                        }
                                                } else {
@@ -3760,7 +3760,7 @@ bailoutandtrynormal:
                                                }
                                                if (musiconhold && mohtempstopped && confsilence > MEETME_DELAYDETECTENDTALK) {
                                                        mohtempstopped = 0;
-                                                       ast_moh_start(chan, NULL, NULL);
+                                                       conf_start_moh(chan, optargs[OPT_ARG_MOH_CLASS]);
                                                }
                                        }
                                } else {