diff options
author | David Baker <dbkr@matrix.org> | 2014-09-11 18:59:22 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-11 18:59:22 +0100 |
commit | 1e05e30472de1d115e655390ada4fa7a01271b3e (patch) | |
tree | 314fba24b41463b13b0b46e4055b8ba64f134808 /webclient | |
parent | Fix bug where web client wold break trying to add the earliest token without ... (diff) | |
download | synapse-1e05e30472de1d115e655390ada4fa7a01271b3e.tar.xz |
Put back the line that adds the stream to the invite, otherwise caller->callee audio won't work...
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/components/matrix/matrix-call.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webclient/components/matrix/matrix-call.js b/webclient/components/matrix/matrix-call.js index 3a692ccf5c..2191bdab39 100644 --- a/webclient/components/matrix/matrix-call.js +++ b/webclient/components/matrix/matrix-call.js @@ -138,6 +138,7 @@ angular.module('MatrixCall', []) audioTracks[i].enabled = true; } this.peerConn = this.createPeerConnection(); + this.peerConn.addStream(stream); var self = this; this.peerConn.createOffer(function(d) { self.gotLocalOffer(d); |