From 4eb8ce8704c777825ae9febc5ea60e6d860d31f1 Mon Sep 17 00:00:00 2001 From: file Date: Thu, 25 May 2006 20:03:11 +0000 Subject: Don't play the enter sound twice when a person joins a conference after the leader has joined it. (issue #6138 reported by shanermn) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@30373 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_meetme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_meetme.c') diff --git a/apps/app_meetme.c b/apps/app_meetme.c index a4d82eb38..69996c8f7 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1069,7 +1069,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c if (!firstpass && !(confflags & CONFFLAG_MONITOR) && !(confflags & CONFFLAG_ADMIN)) { firstpass = 1; if (!(confflags & CONFFLAG_QUIET)) - if (!(confflags & CONFFLAG_WAITMARKED) || (conf->markedusers >= 1)) + if (!(confflags & CONFFLAG_WAITMARKED) || ((confflags & CONFFLAG_MARKEDUSER) && (conf->markedusers >= 1))) conf_play(chan, conf, ENTER); } -- cgit v1.2.3