Skip to content

Commit faf1c14

Browse files
Update breakoutrooms-web.md
1 parent adff4cc commit faf1c14

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

articles/communication-services/how-tos/calling-sdk/includes/breakoutrooms/breakoutrooms-web.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ The following code shows you valuable information received in the breakout room
124124
break;
125125
case "breakoutRoomsSettings":
126126
const breakoutRoomSettings = event.data;
127-
console.log(`Breakout room ends at: ${breakoutRoomSettings.roomEndTime}`);
128-
console.log(`Main meeting url to join the Main Meeting : ${breakoutRoomSettings.mainMeetingUrl}`);
127+
console.log(`Breakout room ends at: ${breakoutRoomSettings.roomEndTime}`);
129128
console.log(`Disable the user to return to main meeting from breakout room call : ${breakoutRoomSettings.disableReturnToMainMeeting}`);
130129
break;
131130
case "join":
@@ -200,7 +199,7 @@ if(assignedRoom.state == 'open' && !assignedRoom.autoMoveParticipantToBreakoutRo
200199
const breakoutRoomCall = await assignedRoom.join();
201200
}
202201
```
203-
Microsoft 365 user with role organizer, co-organizer, or breakout room manager get the list of breakout rooms created by the breakout room manager or organizer of the main meeting. In this case, the behavior is slightly different. This user has to explicitly call `join()` method to join the breakout room. The user is kept on hold in the main meeting. When the leaves the breakout room, then the user's main meeting call is automatically resumed.
202+
Microsoft 365 user with role organizer, co-organizer, or breakout room manager get the list of breakout rooms created by the breakout room manager or organizer of the main meeting. In this case, the behavior is slightly different. This user has to explicitly call `join()` method to join the breakout room. The user is kept on hold in the main meeting initially and eventually removed from the main meeting. The user has to initialize the breakoutRooms Feature for the `breakoutRoomCall` inorder to receive updates on the breakout room.
204203

205204
If the user wants to join any of the breakout rooms , then the user explicitly calls the `join` method.
206205

0 commit comments

Comments
 (0)