Merge pull request #19084 from prlanzarin/u27/fix/dialin-reguser-dedupe

fix: specify a unique mock authToken for dial-in users, +
This commit is contained in:
Anton Georgiev 2023-11-08 09:03:22 -05:00 committed by GitHub
commit f314aaf046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,8 +34,8 @@ trait UserJoinedVoiceConfEvtMsgHdlr extends SystemConfiguration {
def registerUserInRegisteredUsers() = {
val regUser = RegisteredUsers.create(msg.body.intId, msg.body.voiceUserId,
msg.body.callerIdName, Roles.VIEWER_ROLE, "", userColor,
"", true, true, GuestStatus.WAIT, true, false)
msg.body.callerIdName, Roles.VIEWER_ROLE, msg.body.intId, "",
userColor, true, true, GuestStatus.WAIT, true, false)
RegisteredUsers.add(liveMeeting.registeredUsers, regUser)
}