We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46eef46 commit b5c08dcCopy full SHA for b5c08dc
package.json
@@ -2,7 +2,7 @@
2
"name": "jssip",
3
"title": "JsSIP",
4
"description": "the Javascript SIP library",
5
- "version": "0.3.1-devel",
+ "version": "0.3.2-devel",
6
"homepage": "http://jssip.net",
7
"author": "José Luis Millán <jmillan@aliax.net>",
8
"contributors": [
src/Transactions.js
@@ -139,7 +139,10 @@ var InviteClientTransactionPrototype = function() {
139
window.clearTimeout(this.D);
140
window.clearTimeout(this.M);
141
delete this.request_sender.ua.transactions.ict[this.id];
142
- this.request_sender.onTransportError();
+
143
+ if (this.state !== C.STATUS_ACCEPTED) {
144
+ this.request_sender.onTransportError();
145
+ }
146
};
147
148
// RFC 6026 7.2
0 commit comments