Skip to content

Commit e633beb

Browse files
authored
Merge pull request #328 from Temasys/0.6.x/development
Release 0.6.33
2 parents 75b5d8d + 8ce7e79 commit e633beb

37 files changed

+603
-219
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ You can raise tickets on [our support portal](http://support.temasys.io) or on [
5050
##### Current versions and stability
5151
We recommend that you always use the latest versions of the Temasys SkylinkJS Web SDK as WebRTC is still evolving and we adapt to changes very frequently.
5252

53-
[Latest version: `0.6.32`](https://github.com/Temasys/SkylinkJS/releases/tag/0.6.32).
53+
[Latest version: `0.6.33`](https://github.com/Temasys/SkylinkJS/releases/tag/0.6.33).
5454

5555
##### Setting AdapterJS flags
5656
If you require to set Temasys AdapterJS flags (e.g. forcing Temasys WebRTC plugin), we recommend the following method:

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "skylinkjs",
33
"description": "WebRTC real-time video conversation library",
4-
"version": "0.6.32",
4+
"version": "0.6.33",
55
"homepage": "https://temasys.io",
66
"author": {
77
"name": "Temasys Communications Pte. Ltd.",

demo/app/js/main.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,15 @@ Demo.Skylink.on('getConnectionStatusStateChange', function (state, peerId, stats
632632
} else {
633633
itemStr += (bits / 1000000).toFixed(2) + ' mbps';
634634
}
635-
635+
if (!stats[type][dir].packetsLost || stats[type][dir].packetsLost == 'undefined') {
636+
stats[type][dir].packetsLost = 0;
637+
}
638+
if (!stats[type][dir].jitter || stats[type][dir].jitter == 'undefined') {
639+
stats[type][dir].jitter = 0;
640+
}
641+
if (!stats[type][dir].rtt || stats[type][dir].rtt == 'undefined') {
642+
stats[type][dir].rtt = 0;
643+
}
636644
// format packet stats
637645
itemStr += '<br>Packets - (' + stats[type][dir].packets + ' sent, ' +
638646
stats[type][dir].packetsLost + ' lost, ' + stats[type][dir].jitter + ' jitter' +

0 commit comments

Comments
 (0)