Skip to content

Commit

Permalink
Bugfix. Permit receiving a 200 OK to a INVITE before any 1XX provisional
Browse files Browse the repository at this point in the history
- Set the RTCSession status to CONFIRMED before sending the ACK
  • Loading branch information
jmillan committed Jul 5, 2013
1 parent e66507a commit 7c2abe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RTCSession.js
Original file line number Diff line number Diff line change
Expand Up @@ -851,8 +851,8 @@ RTCSession.prototype.receiveResponse = function(response) {
* SDP Answer fits with Offer. Media will start
*/
function() {
session.sendACK();
session.status = C.STATUS_CONFIRMED;
session.sendACK();
session.started('remote', response);
},
/*
Expand Down

0 comments on commit 7c2abe0

Please sign in to comment.