vani-meeting-server 2.3.8 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,7 +146,6 @@ class SFUEachRoomHandler extends BaseSFUWebsocket_1.BaseSFUWebsocket {
146
146
  const indexForRecRouter = (this.roomPaticipants.size % this.recvRouter.length);
147
147
  const roomUser = new SFUEachRoomUserHandler_1.SFUEachRoomUserHandler(participant, this.sendRouter, this.recvRouter[indexForRecRouter], this);
148
148
  this.roomPaticipants.set(participant.userId, roomUser);
149
- console.log("this.roomPaticipants", this.roomPaticipants);
150
149
  return roomUser;
151
150
  }
152
151
  }
@@ -54,7 +54,6 @@ class SFUHandler {
54
54
  }
55
55
  async checkIfCanCloseRoom(roomId) {
56
56
  const room = this.getRoomSFUHandler(roomId);
57
- console.log("checkIfCanCloseRoom", room);
58
57
  if (room && (await RedisHandler_1.RedisHandler.getInstance().getAllParticipants(roomId)).length === 0) {
59
58
  await room.cleanUp();
60
59
  this.sfuRooms.delete(roomId);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vani-meeting-server",
3
- "version": "2.3.8",
3
+ "version": "2.4.0",
4
4
  "description": "Vani Meeting Server SDK",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",