@webex/plugin-meetings 1.151.1 → 1.151.5
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/meeting/index.js +3 -1
- package/dist/meeting/index.js.map +1 -1
- package/dist/meeting-info/utilv2.js +78 -36
- package/dist/meeting-info/utilv2.js.map +1 -1
- package/dist/meetings/index.js +2 -2
- package/dist/meetings/index.js.map +1 -1
- package/package.json +5 -5
- package/src/meeting/index.js +1 -1
- package/src/meeting-info/utilv2.js +27 -5
- package/src/meetings/index.js +2 -1
- package/test/integration/spec/space-meeting.js +3 -2
- package/test/unit/spec/meeting-info/utilv2.js +80 -4
package/dist/meeting/index.js
CHANGED
|
@@ -527,6 +527,8 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
527
527
|
sendVideo: devicePermissions.sendVideo,
|
|
528
528
|
isSharing: _this.shareStatus === _constants.SHARE_STATUS.LOCAL_SHARE_ACTIVE
|
|
529
529
|
}), audioVideo, sharePreferences, _this.config).catch(function (error) {
|
|
530
|
+
var _this$locusUrl;
|
|
531
|
+
|
|
530
532
|
// Whenever there is a failure when trying to access a user's device
|
|
531
533
|
// report it as an operational metric
|
|
532
534
|
// This gives visibility into common errors and can help
|
|
@@ -534,7 +536,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
534
536
|
var metricName = _constants.METRICS_OPERATIONAL_MEASURES.GET_USER_MEDIA_FAILURE;
|
|
535
537
|
var data = {
|
|
536
538
|
correlation_id: _this.correlationId,
|
|
537
|
-
locus_id: _this.locusUrl.split('/').pop(),
|
|
539
|
+
locus_id: (_this$locusUrl = _this.locusUrl) === null || _this$locusUrl === void 0 ? void 0 : _this$locusUrl.split('/').pop(),
|
|
538
540
|
reason: error.message,
|
|
539
541
|
stack: error.stack
|
|
540
542
|
};
|