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:
parent
d169366215
commit
bb75a34f34
|
@ -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")) {
|
||||
|
|
Loading…
Reference in New Issue