mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-07 02:39:20 +00:00
Restoring commit lost in mod_conference refactor.
Commit c49f87313ad3d6c65d0a68c80763822772c42cbd, 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")) {
|
if (!strcasecmp(argv[i], "mute")) {
|
||||||
f[MFLAG_CAN_SPEAK] = 0;
|
f[MFLAG_CAN_SPEAK] = 0;
|
||||||
f[MFLAG_TALKING] = 0;
|
f[MFLAG_TALKING] = 0;
|
||||||
|
} else if (!strcasecmp(argv[i], "vmute")) {
|
||||||
|
f[MFLAG_CAN_BE_SEEN] = 0;
|
||||||
} else if (!strcasecmp(argv[i], "deaf")) {
|
} else if (!strcasecmp(argv[i], "deaf")) {
|
||||||
f[MFLAG_CAN_HEAR] = 0;
|
f[MFLAG_CAN_HEAR] = 0;
|
||||||
} else if (!strcasecmp(argv[i], "mute-detect")) {
|
} else if (!strcasecmp(argv[i], "mute-detect")) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user