- only update parent meeting if this is breakout room
This commit is contained in:
parent
5114ea7780
commit
b89fd1dbe2
@ -75,11 +75,13 @@ class MeetingActorAudit(
|
|||||||
// Trigger updating users of time remaining on meeting.
|
// Trigger updating users of time remaining on meeting.
|
||||||
eventBus.publish(BigBlueButtonEvent(props.meetingProp.intId, SendTimeRemainingAuditInternalMsg(props.meetingProp.intId)))
|
eventBus.publish(BigBlueButtonEvent(props.meetingProp.intId, SendTimeRemainingAuditInternalMsg(props.meetingProp.intId)))
|
||||||
|
|
||||||
// This is a breakout room. Update the main meeting with list of users in this breakout room.
|
if (props.meetingProp.isBreakout) {
|
||||||
eventBus.publish(BigBlueButtonEvent(
|
// This is a breakout room. Update the main meeting with list of users in this breakout room.
|
||||||
props.meetingProp.intId,
|
eventBus.publish(BigBlueButtonEvent(
|
||||||
SendBreakoutUsersAuditInternalMsg(props.breakoutProps.parentId, props.meetingProp.intId)
|
props.meetingProp.intId,
|
||||||
))
|
SendBreakoutUsersAuditInternalMsg(props.breakoutProps.parentId, props.meetingProp.intId)
|
||||||
|
))
|
||||||
|
}
|
||||||
|
|
||||||
// Trigger recording timer, only for meeting allowing recording
|
// Trigger recording timer, only for meeting allowing recording
|
||||||
if (props.recordProp.record) {
|
if (props.recordProp.record) {
|
||||||
|
Loading…
Reference in New Issue
Block a user