We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d08495 commit b0f17eaCopy full SHA for b0f17ea
lib/hub.js
@@ -71,8 +71,7 @@ class Hub {
71
if (!map.has(toPeerId)) {
72
map.set(toPeerId, [data]);
73
} else {
74
- // console.warn(map.get(toPeerId))
75
- map.set(toPeerId, [...map.get(toPeerId), data]);
+ map.get(toPeerId).push(data);
76
}
77
78
map.forEach((items, toPeerId) => {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "cbsignal_uws",
3
- "version": "5.4.7",
+ "version": "5.4.8",
4
"description": "SwarmCloud signaling server using uWebSockets.js",
5
"main": "index.js",
6
"bin": "index.js",
0 commit comments