Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-03-20 19:41:10 +0300
committerJoas Schilling <coding@schilljs.com>2018-03-22 12:00:08 +0300
commit92eb4f919505cd0941f29ab5c7789322d7afebe1 (patch)
tree55c6c451c058595237e14179d11057fb53b335cd /js/webrtc.js
parente7711ffa24d3202cc794a3530bf18b4d868f6408 (diff)
WebRTC doesn't know about "rooms" anymore, their rooms are our calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'js/webrtc.js')
-rw-r--r--js/webrtc.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/js/webrtc.js b/js/webrtc.js
index a4a77cbab..d6268dfeb 100644
--- a/js/webrtc.js
+++ b/js/webrtc.js
@@ -188,15 +188,9 @@ var spreedPeerConnectionTable = [];
app.signaling.on('leaveCall', function () {
webrtc.leaveCall();
});
- app.signaling.on('leaveRoom', function () {
- webrtc.leaveRoom();
- });
app.signaling.on('joinCall', function (token) {
webrtc.joinCall(token);
});
- app.signaling.on('joinRoom', function (token) {
- webrtc.joinRoom(token);
- });
var nick = OC.getCurrentUser().displayName;