Restoring commit lost in mod_conference refactor.

Commit c49f87313a, which added a vmute
option to the conference member flags, was somehow lost in the
mod_conference refactor. This commit restores the lost code.

FS-7813 #resolve
This commit is contained in:
Chad Phillips 2015-07-20 21:16:21 -07:00
parent d169366215
commit bb75a34f34
1 changed files with 2 additions and 0 deletions

View File

@ -107,6 +107,8 @@ void conference_utils_set_mflags(const char *flags, member_flag_t *f)
if (!strcasecmp(argv[i], "mute")) {
f[MFLAG_CAN_SPEAK] = 0;
f[MFLAG_TALKING] = 0;
} else if (!strcasecmp(argv[i], "vmute")) {
f[MFLAG_CAN_BE_SEEN] = 0;
} else if (!strcasecmp(argv[i], "deaf")) {
f[MFLAG_CAN_HEAR] = 0;
} else if (!strcasecmp(argv[i], "mute-detect")) {