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:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2021-06-02 23:03:54 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2021-06-07 15:19:10 +0300
commit2dc4b5c13e588a7b8bd8c769cb1d2e49b70fd54e (patch)
treeb94426d9a716aff54c796c10694e65ced3083262
parentb7cc61b1d7525774b5f2a497e7e67b2ee734e9b6 (diff)
Fix current call flags not respected in forced reconnections without HPB
The current call flags were not given in forced reconnections with the internal signaling server, so the server used the default flags (audio and video). Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--src/utils/signaling.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/signaling.js b/src/utils/signaling.js
index 8c19031b5..ae5f42225 100644
--- a/src/utils/signaling.js
+++ b/src/utils/signaling.js
@@ -343,7 +343,7 @@ Signaling.Internal.prototype.forceReconnect = function(newSession, flags) {
// FIXME Naive reconnection routine; as the same session is kept peers
// must be explicitly ended before the reconnection is forced.
this.leaveCall(this.currentCallToken, true)
- this.joinCall(this.currentCallToken)
+ this.joinCall(this.currentCallToken, this.currentCallFlags)
}
Signaling.Internal.prototype._sendMessageWithCallback = function(ev) {