From 1e05e30472de1d115e655390ada4fa7a01271b3e Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 11 Sep 2014 18:59:22 +0100 Subject: [PATCH] Put back the line that adds the stream to the invite, otherwise caller->callee audio won't work... --- webclient/components/matrix/matrix-call.js | 1 + 1 file changed, 1 insertion(+) 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);