vani-meeting-server 1.4.1 → 1.4.2

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.
@@ -79,6 +79,7 @@ class RedisHandler {
79
79
  }
80
80
  //Users
81
81
  async removeParticipantForRoom(roomId, participant) {
82
+ console.log("removeParticipantForRoom", participant);
82
83
  const participantKey = RedisKeyType.Participants + ":" + participant.userId;
83
84
  await this.redisClient.hDel(roomId, participantKey);
84
85
  // console.log("removeParticipantForRoom =====" , participantKey)
@@ -87,6 +88,7 @@ class RedisHandler {
87
88
  this.updateRoomCleanupTimeOut(roomId);
88
89
  }
89
90
  async addUpdateParticipantForRoom(roomId, participant) {
91
+ console.log("addUpdateParticipantForRoom", participant);
90
92
  const participantKey = RedisKeyType.Participants + ":" + participant.userId;
91
93
  await this.redisClient.hSet(roomId, participantKey, JSON.stringify(participant));
92
94
  // console.log("addUpdateParticipantForRoom =====" , participantKey)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vani-meeting-server",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Vani Meeting Server SDK",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",