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-15 18:03:54 +0300
committerSteffen Lindner <mail@steffen-lindner.de>2018-03-19 15:35:36 +0300
commit597a412c430c8b6c18cad743dcacead69337d4f5 (patch)
tree20db6cf62f66eaa9edefac804f6ac2c4aa724bf0 /js/connection.js
parent7428175521bb69be9701dfe6e57c4b1b886b5f8b (diff)
Remove empty wrapper method
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'js/connection.js')
-rw-r--r--js/connection.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/connection.js b/js/connection.js
index f1534d7f5..7e410c258 100644
--- a/js/connection.js
+++ b/js/connection.js
@@ -104,7 +104,7 @@
this.app.signaling.leaveCurrentCall();
this.app.signaling.joinCall(token);
- this.app.syncRooms();
+ this.app.signaling.syncRooms();
this.app.setupWebRTC();
@@ -116,7 +116,7 @@
}
this.app.signaling.leaveCurrentCall();
- this.app.syncRooms();
+ this.app.signaling.syncRooms();
$('#app-content').removeClass('incall');
},
leaveCurrentCall: function(deleter) {