Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 4e4b728

Browse files
committed
1 parent 15792cf commit 4e4b728

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

release/SIPml-api.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tinyMEDIA/src/tmedia_session_jsep.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ tmedia_session_jsep01.prototype.__get_lo = function () {
668668
}
669669
try { tsk_utils_log_info("ICE servers:" + JSON.stringify(o_iceServers)); } catch (e) { }
670670
this.o_pc = new window.RTCPeerConnection(
671-
(o_iceServers && !o_iceServers.length) ? null : { iceServers: o_iceServers }, // empty array is used to disable STUN/TURN.
671+
(o_iceServers && !o_iceServers.length) ? null : { iceServers: o_iceServers, rtcpMuxPolicy: "negotiate" }, // empty array is used to disable STUN/TURN.
672672
this.o_media_constraints
673673
);
674674
this.o_pc.onicecandidate = tmedia_session_jsep01.mozThis ? tmedia_session_jsep01.onIceCandidate : function (o_event) { tmedia_session_jsep01.onIceCandidate(o_event, This); };

0 commit comments

Comments
 (0)