Skip to content

Commit

Permalink
fix(joining): bug where several peers join at once via the same peer.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kalitine committed May 23, 2016
1 parent 41f7b9d commit 7391d2a
Show file tree
Hide file tree
Showing 14 changed files with 964 additions and 724 deletions.
22 changes: 20 additions & 2 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ System.config({
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]",
"github:jspm/[email protected]": {
"assert": "npm:[email protected]"
"assert": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"buffer": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"path-browserify": "npm:[email protected]"
Expand All @@ -29,12 +32,27 @@ System.config({
"github:jspm/[email protected]": {
"util": "npm:[email protected]"
},
"npm:[email protected]": {
"npm:[email protected]": {
"assert": "github:jspm/[email protected]",
"buffer": "github:jspm/[email protected]",
"buffer-shims": "npm:[email protected]",
"process": "github:jspm/[email protected]",
"util": "npm:[email protected]"
},
"npm:[email protected]": {
"process": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"buffer": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"base64-js": "npm:[email protected]",
"child_process": "github:jspm/[email protected]",
"fs": "github:jspm/[email protected]",
"ieee754": "npm:[email protected]",
"isarray": "npm:[email protected]",
"process": "github:jspm/[email protected]"
},
"npm:[email protected]": {
"fs": "github:jspm/[email protected]",
"path": "github:jspm/[email protected]",
Expand Down
Loading

0 comments on commit 7391d2a

Please sign in to comment.