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 index 4ec3d3ea04..b53f1dcffe 100755 --- 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,13 +14,14 @@ 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() + } + /** - * 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)