From bb75a34f34cbcb6f3da7e940580e506d2b8e5969 Mon Sep 17 00:00:00 2001 From: Chad Phillips Date: Mon, 20 Jul 2015 21:16:21 -0700 Subject: [PATCH] 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 --- src/mod/applications/mod_conference/conference_utils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mod/applications/mod_conference/conference_utils.c b/src/mod/applications/mod_conference/conference_utils.c index ecaf0b6e6f..b28fedf6d3 100644 --- a/src/mod/applications/mod_conference/conference_utils.c +++ b/src/mod/applications/mod_conference/conference_utils.c @@ -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")) {