diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UserJoinMeetingAfterReconnectReqMsgHdlr.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UserJoinMeetingAfterReconnectReqMsgHdlr.scala old mode 100644 new mode 100755 index 43015c26f5f85aa94aa2652f2adca50806717d3a..4ec3d3ea0427825088f27b1480f090bdf1d67942 --- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UserJoinMeetingAfterReconnectReqMsgHdlr.scala +++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/apps/users/UserJoinMeetingAfterReconnectReqMsgHdlr.scala @@ -14,20 +14,24 @@ trait UserJoinMeetingAfterReconnectReqMsgHdlr extends HandlerHelpers with Breako val outGW: OutMsgRouter def handleUserJoinMeetingAfterReconnectReqMsg(msg: UserJoinMeetingAfterReconnectReqMsg, state: MeetingState2x): MeetingState2x = { - val newState = userJoinMeeting(outGW, msg.body.authToken, liveMeeting, state) - - if (liveMeeting.props.meetingProp.isBreakout) { - updateParentMeetingWithUsers() - } - - // recover voice user - for { - vu <- VoiceUsers.recoverVoiceUser(liveMeeting.voiceUsers, msg.body.userId) - } yield { - handleUserJoinedVoiceConfEvtMsg(liveMeeting.props.voiceProp.voiceConf, vu.intId, vu.voiceUserId, vu.callingWith, vu.callerName, vu.callerNum, vu.muted, vu.talking) - } - - newState + /** + * val newState = userJoinMeeting(outGW, msg.body.authToken, liveMeeting, state) + * + * if (liveMeeting.props.meetingProp.isBreakout) { + * updateParentMeetingWithUsers() + * } + * + * // recover voice user + * for { + * vu <- VoiceUsers.recoverVoiceUser(liveMeeting.voiceUsers, msg.body.userId) + * } yield { + * handleUserJoinedVoiceConfEvtMsg(liveMeeting.props.voiceProp.voiceConf, vu.intId, vu.voiceUserId, vu.callingWith, vu.callerName, vu.callerNum, vu.muted, vu.talking) + * } + * + * newState + */ + + state } }