Skip to content

Commit 39949e0

Browse files
committed
fix createAnswer / createOffer when ICE state is 'completed'
RTCMediaHandler's createAnswer and createOffer methods never invoke the success callback if the ICE state is 'completed'. This happens because the onSetLocalDescriptionSuccess callbacks check whether the ICE state is 'connected' instead of 'connected' or 'completed'. As a consequence of this, hold and unhold no longer works once ICE reaches the 'completed' state. This change fixes the ICE state test to allow both 'connected' and 'completed'.
1 parent 36c77f9 commit 39949e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/RTCSession/RTCMediaHandler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RTCMediaHandler.prototype = {
3030
var self = this;
3131

3232
function onSetLocalDescriptionSuccess() {
33-
if (self.peerConnection.iceGatheringState === 'complete' && self.peerConnection.iceConnectionState === 'connected') {
33+
if (self.peerConnection.iceGatheringState === 'complete' && (self.peerConnection.iceConnectionState === 'connected' || self.peerConnection.iceConnectionState === 'completed')) {
3434
self.ready = true;
3535
onSuccess(self.peerConnection.localDescription.sdp);
3636
} else {
@@ -69,7 +69,7 @@ RTCMediaHandler.prototype = {
6969
var self = this;
7070

7171
function onSetLocalDescriptionSuccess() {
72-
if (self.peerConnection.iceGatheringState === 'complete' && self.peerConnection.iceConnectionState === 'connected') {
72+
if (self.peerConnection.iceGatheringState === 'complete' && (self.peerConnection.iceConnectionState === 'connected' || self.peerConnection.iceConnectionState === 'completed')) {
7373
self.ready = true;
7474
onSuccess(self.peerConnection.localDescription.sdp);
7575
} else {

0 commit comments

Comments
 (0)