vani-meeting-server 2.6.8 → 2.6.9

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.
@@ -272,7 +272,8 @@ class RedisHandler {
272
272
  if (particpantsInStringify) {
273
273
  Object.entries(particpantsInStringify).forEach(([key, value]) => {
274
274
  if (key.includes(RedisKeyType.Participants)) {
275
- participants.push(Object.assign(new Participant_1.Participant(), JSON.parse(value)));
275
+ const valueStr = value;
276
+ participants.push(Object.assign(new Participant_1.Participant(), JSON.parse(valueStr)));
276
277
  }
277
278
  });
278
279
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vani-meeting-server",
3
- "version": "2.6.8",
3
+ "version": "2.6.9",
4
4
  "description": "Vani Meeting Server SDK",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -23,7 +23,6 @@
23
23
  "@types/body-parser": "^1.19.2",
24
24
  "@types/express": "^4.17.13",
25
25
  "@types/node": "^18.7.16",
26
- "@types/redis": "^4.0.11",
27
26
  "@types/ws": "^8.5.3",
28
27
  "axios": "^0.27.2",
29
28
  "body-parser": "^1.20.0",
@@ -33,6 +32,7 @@
33
32
  "helmet": "^6.0.0",
34
33
  "mediasoup": "3.15.4",
35
34
  "public-ip": "4.0.3",
35
+ "redis": "^5.0.1",
36
36
  "typescript": "^5.6.2",
37
37
  "uuid": "^9.0.0",
38
38
  "ws": "^8.9.0"