Skip to content

Commit

Permalink
1.1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Yiming Wang committed Apr 4, 2023
1 parent 06bdf83 commit 25f7612
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "connect-rtc-js",
"version": "1.1.18",
"version": "1.1.19",
"description": "Amazon Connect softphone library",
"license": "Apache-2.0",
"main": "./src/js/connect-rtc.js",
Expand Down
8 changes: 4 additions & 4 deletions release/connect-rtc-debug.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions release/connect-rtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10048,11 +10048,11 @@ var RtcSession = function () {
}

self = _this11;
return _context.abrupt('return', new Promise(function (resolve) {
return _context.abrupt('return', new Promise(function (resolve, reject) {
self._pc.getStats(function (rawStats) {
var digestedStats = (0, _rtpStats.extractMediaStatsFromStats)(timestamp, rawStats.result(), streamType);
if (!digestedStats) {
throw new Error('Failed to extract MediaRtpStats from RTCStatsReport for stream type ' + streamType);
reject(new Error('Failed to extract MediaRtpStats from RTCStatsReport for stream type ' + streamType));
}
resolve(digestedStats);
}, track);
Expand Down Expand Up @@ -11034,7 +11034,7 @@ var SessionReport = exports.SessionReport = function () {
this._noRemoteIceCandidateFailure = null;
this._setRemoteDescriptionFailure = null;
this._streamStats = [];
this._rtcJsVersion = "1.1.18";
this._rtcJsVersion = "1.1.19";
}
/**
*Timestamp when RTCSession started.
Expand Down
6 changes: 3 additions & 3 deletions release/connect-rtc.min.js

Large diffs are not rendered by default.

0 comments on commit 25f7612

Please sign in to comment.