Skip to content

Commit 7391d2a

Browse files
committed
fix(joining): bug where several peers join at once via the same peer.
Updates JSPM devDependecies. There where a bug when several peers join at once via the same peer. This commit resolves this bug for 6 peers joining at once. Above this amount (Chrome behaves a little bit better then Firefox) some errors due to setting remote answer may occure. I do not know whether this is WebRTC issue or Netflux.
1 parent 41f7b9d commit 7391d2a

File tree

14 files changed

+964
-724
lines changed

14 files changed

+964
-724
lines changed

config.js

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ System.config({
1818
"babel-runtime": "npm:[email protected]",
1919
"core-js": "npm:[email protected]",
2020
"github:jspm/[email protected]": {
21-
"assert": "npm:[email protected]"
21+
"assert": "npm:[email protected]"
22+
},
23+
"github:jspm/[email protected]": {
24+
"buffer": "npm:[email protected]"
2225
},
2326
"github:jspm/[email protected]": {
2427
"path-browserify": "npm:[email protected]"
@@ -29,12 +32,27 @@ System.config({
2932
"github:jspm/[email protected]": {
3033
"util": "npm:[email protected]"
3134
},
32-
35+
36+
"assert": "github:jspm/[email protected]",
37+
"buffer": "github:jspm/[email protected]",
38+
"buffer-shims": "npm:[email protected]",
39+
"process": "github:jspm/[email protected]",
3340
"util": "npm:[email protected]"
3441
},
3542
3643
"process": "github:jspm/[email protected]"
3744
},
45+
46+
"buffer": "github:jspm/[email protected]"
47+
},
48+
49+
"base64-js": "npm:[email protected]",
50+
"child_process": "github:jspm/[email protected]",
51+
"fs": "github:jspm/[email protected]",
52+
"ieee754": "npm:[email protected]",
53+
"isarray": "npm:[email protected]",
54+
"process": "github:jspm/[email protected]"
55+
},
3856
3957
"fs": "github:jspm/[email protected]",
4058
"path": "github:jspm/[email protected]",

0 commit comments

Comments
 (0)