diff --git a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActorAudit.scala b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActorAudit.scala
index 2b0bcbcbb907662ea452ac4b732c0c8fc77d070f..915f5ae7c6ff3735d2f131d94ec6bb60d1795983 100755
--- a/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActorAudit.scala
+++ b/akka-bbb-apps/src/main/scala/org/bigbluebutton/core/running/MeetingActorAudit.scala
@@ -75,11 +75,13 @@ class MeetingActorAudit(
     // Trigger updating users of time remaining on meeting.
     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.
-    eventBus.publish(BigBlueButtonEvent(
-      props.meetingProp.intId,
-      SendBreakoutUsersAuditInternalMsg(props.breakoutProps.parentId, props.meetingProp.intId)
-    ))
+    if (props.meetingProp.isBreakout) {
+      // This is a breakout room. Update the main meeting with list of users in this breakout room.
+      eventBus.publish(BigBlueButtonEvent(
+        props.meetingProp.intId,
+        SendBreakoutUsersAuditInternalMsg(props.breakoutProps.parentId, props.meetingProp.intId)
+      ))
+    }
 
     // Trigger recording timer, only for meeting allowing recording
     if (props.recordProp.record) {