Merge pull request #9312 from ritzalam/remove-disconnect-on-auth-failed

Do not send disconnect message
This commit is contained in:
Tiago D J 2020-04-28 23:31:39 -03:00 committed by GitHub
commit d06d0f8aa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,8 @@ trait ValidateAuthTokenReqMsgHdlr extends HandlerHelpers {
outGW.send(event)
// send a system message to force disconnection
Sender.sendDisconnectClientSysMsg(meetingId, userId, SystemUser.ID, reasonCode, outGW)
// Comment out as meteor will disconnect the client. Requested by Tiago (ralam apr 28, 2020)
//Sender.sendDisconnectClientSysMsg(meetingId, userId, SystemUser.ID, reasonCode, outGW)
state
}