-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
14 changed files
with
964 additions
and
724 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]" | ||
|
@@ -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]", | ||
|
Oops, something went wrong.