- only update parent meeting if this is breakout room

This commit is contained in:
Richard Alam 2021-04-23 21:21:23 +00:00
parent 5114ea7780
commit b89fd1dbe2

View File

@ -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) {