Skip to content

Commit

Permalink
3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Apr 3, 2020
1 parent 4952fcd commit 002fbd3
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

Version 3.4.2 (released in 2020-04-03)
---------------------------------------

* RTCSession: disable remote hold state when receiving an INVITE without SDP (#613). Credits to @RobyMcAndrew.


Version 3.4.1 (released in 2020-03-30)
---------------------------------------

Expand Down
11 changes: 9 additions & 2 deletions dist/jssip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* JsSIP v3.4.1
* JsSIP v3.4.2
* the Javascript SIP library
* Copyright: 2012-2020 José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)
* Homepage: https://jssip.net
Expand Down Expand Up @@ -18685,6 +18685,13 @@ module.exports = /*#__PURE__*/function (_EventEmitter) {

if (!request.body) {
this._late_sdp = true;

if (this._remoteHold) {
this._remoteHold = false;

this._onunhold('remote');
}

this._connectionPromiseQueue = this._connectionPromiseQueue.then(function () {
return _this14._createLocalDescription('offer', _this14._rtcOfferConstraints);
}).then(function (sdp) {
Expand Down Expand Up @@ -27583,7 +27590,7 @@ module.exports={
"name": "jssip",
"title": "JsSIP",
"description": "the Javascript SIP library",
"version": "3.4.1",
"version": "3.4.2",
"homepage": "https://jssip.net",
"author": "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
"contributors": [
Expand Down
4 changes: 2 additions & 2 deletions dist/jssip.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jssip",
"title": "JsSIP",
"description": "the Javascript SIP library",
"version": "3.4.1",
"version": "3.4.2",
"homepage": "https://jssip.net",
"author": "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
"contributors": [
Expand Down

0 comments on commit 002fbd3

Please sign in to comment.