Skip to content

Commit

Permalink
Fixed listenOnly indicators in Flash
Browse files Browse the repository at this point in the history
  • Loading branch information
capilkey committed May 27, 2015
1 parent 9ac0f24 commit 1b52006
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ package org.bigbluebutton.lib.user.services {
var msg:Object = JSON.parse(m.msg);
//It seems that listenOnly keeps to be true
//Temp solution to set listenOnly to false when user drop listen only mode.
trace(LOG + "handleUserListeningOnly -- user [" + msg.userId + "] has listen only set to [" + !userSession.userList.me.listenOnly + "]");
userSession.userList.listenOnlyChange(msg.userId, !userSession.userList.me.listenOnly);
trace(LOG + "handleUserListeningOnly -- user [" + msg.userId + "] has listen only set to [" + msg.listenOnly + "]");
userSession.userList.listenOnlyChange(msg.userId, msg.listenOnly);
}

private function handleVoiceUserMuted(m:Object):void {
Expand Down

0 comments on commit 1b52006

Please sign in to comment.