Merge pull request #12875 from paultrudel/fix-guest-wait-join-error
Fixed issue with guests not joining meeting after being approved
This commit is contained in:
commit
b5b5a67805
@ -23,7 +23,7 @@ public class GuestWait implements Request<GuestWait.Params> {
|
||||
|
||||
@NotNull(message = "You must provide the session token")
|
||||
@UserSessionConstraint
|
||||
@MaxParticipantsConstraint
|
||||
// @MaxParticipantsConstraint
|
||||
private String sessionToken;
|
||||
|
||||
@MeetingExistsConstraint
|
||||
|
@ -735,12 +735,14 @@ class ApiController {
|
||||
case GuestPolicy.ALLOW:
|
||||
// IF the user was allowed to join but there is no room available in
|
||||
// the meeting we must hold his approval
|
||||
if (hasReachedMaxParticipants(meeting, us)) {
|
||||
meetingService.guestIsWaiting(us.meetingID, us.internalUserId)
|
||||
destURL = guestURL
|
||||
msgKey = "seatWait"
|
||||
msgValue = "Guest waiting for a seat in the meeting."
|
||||
redirectClient = false
|
||||
status = GuestPolicy.WAIT
|
||||
}
|
||||
break
|
||||
default:
|
||||
break
|
||||
|
Loading…
Reference in New Issue
Block a user