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")
|
@NotNull(message = "You must provide the session token")
|
||||||
@UserSessionConstraint
|
@UserSessionConstraint
|
||||||
@MaxParticipantsConstraint
|
// @MaxParticipantsConstraint
|
||||||
private String sessionToken;
|
private String sessionToken;
|
||||||
|
|
||||||
@MeetingExistsConstraint
|
@MeetingExistsConstraint
|
||||||
|
@ -735,12 +735,14 @@ class ApiController {
|
|||||||
case GuestPolicy.ALLOW:
|
case GuestPolicy.ALLOW:
|
||||||
// IF the user was allowed to join but there is no room available in
|
// IF the user was allowed to join but there is no room available in
|
||||||
// the meeting we must hold his approval
|
// the meeting we must hold his approval
|
||||||
meetingService.guestIsWaiting(us.meetingID, us.internalUserId)
|
if (hasReachedMaxParticipants(meeting, us)) {
|
||||||
destURL = guestURL
|
meetingService.guestIsWaiting(us.meetingID, us.internalUserId)
|
||||||
msgKey = "seatWait"
|
destURL = guestURL
|
||||||
msgValue = "Guest waiting for a seat in the meeting."
|
msgKey = "seatWait"
|
||||||
redirectClient = false
|
msgValue = "Guest waiting for a seat in the meeting."
|
||||||
status = GuestPolicy.WAIT
|
redirectClient = false
|
||||||
|
status = GuestPolicy.WAIT
|
||||||
|
}
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user