podchat-browser 11.4.2 → 11.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +6 -1
- package/dist/podchat-11.4.3.js +74696 -0
- package/package.json +3 -3
- package/src/call.module.js +2 -2
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "podchat-browser",
|
|
3
|
-
"version": "11.4.
|
|
3
|
+
"version": "11.4.3",
|
|
4
4
|
"description": "Javascript SDK to use POD's Chat Service - Browser Only",
|
|
5
5
|
"main": "./src/chat.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "mocha --reporter spec --exit",
|
|
8
|
-
"bundle": "browserify browser-bundling.js -o ./dist/podchat-11.4.
|
|
8
|
+
"bundle": "browserify browser-bundling.js -o ./dist/podchat-11.4.3.js",
|
|
9
9
|
"publish:snapshot": "npm run version:snapshot && npm publish --tag snapshot",
|
|
10
10
|
"version:snapshot": "npm version prerelease --preid snapshot",
|
|
11
11
|
"publish:release": "npm run version:release && npm publish",
|
|
12
|
-
"version:release": "npm version 11.4.
|
|
12
|
+
"version:release": "npm version 11.4.3"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
package/src/call.module.js
CHANGED
|
@@ -935,7 +935,7 @@
|
|
|
935
935
|
});
|
|
936
936
|
|
|
937
937
|
sendCallMetaData({
|
|
938
|
-
id: callMetaDataTypes.
|
|
938
|
+
id: callMetaDataTypes.POORCONNECTIONRESOLVED,
|
|
939
939
|
userid: userId,
|
|
940
940
|
title: 'Poor Connection Resolved',
|
|
941
941
|
description: topic
|
|
@@ -1647,7 +1647,7 @@
|
|
|
1647
1647
|
},
|
|
1648
1648
|
handleReceivedMetaData = function (jsonMessage) {
|
|
1649
1649
|
var id = jsonMessage.id;
|
|
1650
|
-
if(!id || typeof id === "undefined" || jsonMessage.userid
|
|
1650
|
+
if(!id || typeof id === "undefined" || jsonMessage.userid == chatMessaging.userInfo.id) {
|
|
1651
1651
|
return;
|
|
1652
1652
|
}
|
|
1653
1653
|
|