From: Anthony Minessale Date: Tue, 22 Apr 2014 18:51:44 +0000 (+0500) Subject: FS-6477 --resolve X-Git-Tag: v1.5.12~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e0cd74e07bb1b582e423f00b38e54439a885af3;p=thirdparty%2Ffreeswitch.git FS-6477 --resolve --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 7f72df2ec9..e614e91710 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -652,7 +652,7 @@ static const char *audio_flow(conference_member_t *member) } if (member->channel && switch_channel_test_flag(member->channel, CF_HOLD)) { - flow = "sendonly"; + flow = switch_test_flag(member, MFLAG_CAN_SPEAK) ? "sendonly" : "inactive"; } return flow;