Merge pull request #349 in FS/freeswitch from ~THEHUNMONKGROUP/freeswitch-fs-7813-2:master to master

* commit 'c49f87313ad3d6c65d0a68c80763822772c42cbd':
  Add vmute member flag to mod_conference.
This commit is contained in:
Mike Jerris 2015-07-15 15:06:30 -05:00
commit 697a01caf0
1 changed files with 2 additions and 0 deletions

View File

@ -12789,6 +12789,8 @@ static void 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")) {