Skip to content

Commit b5c08dc

Browse files
committed
Fix #99. Do not close the RTCSession if it has been accepted and the WS disconnects
1 parent 46eef46 commit b5c08dc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "jssip",
33
"title": "JsSIP",
44
"description": "the Javascript SIP library",
5-
"version": "0.3.1-devel",
5+
"version": "0.3.2-devel",
66
"homepage": "http://jssip.net",
77
"author": "José Luis Millán <jmillan@aliax.net>",
88
"contributors": [

src/Transactions.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ var InviteClientTransactionPrototype = function() {
139139
window.clearTimeout(this.D);
140140
window.clearTimeout(this.M);
141141
delete this.request_sender.ua.transactions.ict[this.id];
142-
this.request_sender.onTransportError();
142+
143+
if (this.state !== C.STATUS_ACCEPTED) {
144+
this.request_sender.onTransportError();
145+
}
143146
};
144147

145148
// RFC 6026 7.2

0 commit comments

Comments
 (0)