@webex/calling 3.10.0-next.2 → 3.10.0-next.4
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/dist/CallingClient/calling/call.js +1 -1
- package/dist/CallingClient/calling/call.js.map +1 -1
- package/dist/CallingClient/calling/call.test.js +324 -258
- package/dist/CallingClient/calling/call.test.js.map +1 -1
- package/dist/module/CallingClient/calling/call.js +1 -1
- package/package.json +3 -3
|
@@ -1159,7 +1159,7 @@ export class Call extends Eventing {
|
|
|
1159
1159
|
method: METHODS.HANDLE_ROAP_ERROR,
|
|
1160
1160
|
});
|
|
1161
1161
|
const message = event.data;
|
|
1162
|
-
if (message) {
|
|
1162
|
+
if (message && message.messageType === 'ERROR') {
|
|
1163
1163
|
try {
|
|
1164
1164
|
const res = await this.postMedia(message);
|
|
1165
1165
|
log.info(`Response code: ${res.statusCode}`, {
|
package/package.json
CHANGED
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@types/platform": "1.3.4",
|
|
40
|
-
"@webex/internal-media-core": "2.20.
|
|
40
|
+
"@webex/internal-media-core": "2.20.1",
|
|
41
41
|
"@webex/internal-plugin-metrics": "3.9.0-next.6",
|
|
42
|
-
"@webex/media-helpers": "3.
|
|
42
|
+
"@webex/media-helpers": "3.10.0-next.1",
|
|
43
43
|
"async-mutex": "0.4.0",
|
|
44
44
|
"buffer": "6.0.3",
|
|
45
45
|
"jest-html-reporters": "3.0.11",
|
|
@@ -132,5 +132,5 @@
|
|
|
132
132
|
"staticpath": "docs",
|
|
133
133
|
"noprompt": true
|
|
134
134
|
},
|
|
135
|
-
"version": "3.10.0-next.
|
|
135
|
+
"version": "3.10.0-next.4"
|
|
136
136
|
}
|