Skip to content

Commit

Permalink
fix(BridgeChannel) Enable SCTP by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
jallamsetty1 committed Jul 2, 2024
1 parent fc115be commit 2d90500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JitsiConference.js
Original file line number Diff line number Diff line change
Expand Up @@ -2291,7 +2291,7 @@ JitsiConference.prototype._acceptJvbIncomingCall = function(jingleSession, jingl
*/
JitsiConference.prototype._setBridgeChannel = function(offerIq, pc) {
const ignoreDomain = this.connection?.options?.bridgeChannel?.ignoreDomain;
const preferSctp = this.connection?.options?.bridgeChannel?.preferSctp ?? false;
const preferSctp = this.connection?.options?.bridgeChannel?.preferSctp ?? true;
const sctpOffered = $(offerIq).find('>content[name="data"]')
.first().length === 1;
let wsUrl = null;
Expand Down

0 comments on commit 2d90500

Please sign in to comment.