Skip to content
Snippets Groups Projects
Commit b89fd1db authored by Richard Alam's avatar Richard Alam
Browse files

- only update parent meeting if this is breakout room

parent 5114ea77
No related branches found
No related tags found
No related merge requests found
...@@ -75,11 +75,13 @@ class MeetingActorAudit( ...@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment