Skip to content

Commit c9e8764

Browse files
committed
Fire 'progress' (originator = local) when receiving an incoming call.
1 parent 880c3e0 commit c9e8764

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/RTCSession.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,6 @@ RTCSession.prototype.init_incoming = function(request) {
881881
* SDP Offer is valid. Fire UA newRTCSession
882882
*/
883883
function() {
884-
request.reply(180, null, ['Contact: ' + self.contact]);
885884
self.status = C.STATUS_WAITING_FOR_ANSWER;
886885

887886
// Set userNoAnswerTimer
@@ -904,7 +903,16 @@ RTCSession.prototype.init_incoming = function(request) {
904903
);
905904
}
906905

906+
// Fire 'newRTCSession' event.
907907
self.newRTCSession('remote', request);
908+
909+
// Reply 180.
910+
request.reply(180, null, ['Contact: ' + self.contact]);
911+
912+
// Fire 'progress' event.
913+
// TODO: Document that 'response' field in 'progress' event is null for
914+
// incoming calls.
915+
self.progress('local', null);
908916
},
909917
/*
910918
* onFailure

0 commit comments

Comments
 (0)