Skip to content

Commit

Permalink
3.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jmillan committed Sep 16, 2021
1 parent c70363d commit 3622683
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGELOG
=========

### 3.8.2


* RTCSession: Fix for overlapping invites while refreshing session (PR #734). Credits to @makstheimba.



### 3.8.1


Expand Down
8 changes: 6 additions & 2 deletions dist/jssip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* JsSIP v3.8.1
* JsSIP v3.8.2
* the Javascript SIP library
* Copyright: 2012-2021
* Homepage: https://jssip.net
Expand Down Expand Up @@ -20300,6 +20300,10 @@ module.exports = /*#__PURE__*/function (_EventEmitter) {
return;
}

if (!_this27._isReadyToReOffer()) {
return;
}

logger.debug('runSessionTimer() | sending session refresh request');

if (_this27._sessionTimers.refreshMethod === JsSIP_C.UPDATE) {
Expand Down Expand Up @@ -28264,7 +28268,7 @@ module.exports={
"name": "jssip",
"title": "JsSIP",
"description": "the Javascript SIP library",
"version": "3.8.1",
"version": "3.8.2",
"homepage": "https://jssip.net",
"contributors": [
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
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.8.1",
"version": "3.8.2",
"homepage": "https://jssip.net",
"contributors": [
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
Expand Down

0 comments on commit 3622683

Please sign in to comment.