diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 3dd7a97ec9be7e4294d3fccf12564345ee9ac603..b1385bedc73064aeda5e8f8eb008274d105d642c 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1145,7 +1145,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); }