@webex/plugin-meetings 2.15.0 → 2.16.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/plugin-meetings",
3
- "version": "2.15.0",
3
+ "version": "2.16.0",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -24,19 +24,19 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@babel/runtime-corejs2": "^7.14.8",
27
- "@webex/webex-core": "2.15.0",
28
- "@webex/internal-plugin-mercury": "2.15.0",
29
- "@webex/internal-plugin-conversation": "2.15.0",
27
+ "@webex/webex-core": "2.16.0",
28
+ "@webex/internal-plugin-mercury": "2.16.0",
29
+ "@webex/internal-plugin-conversation": "2.16.0",
30
30
  "webrtc-adapter": "^7.7.0",
31
31
  "lodash": "^4.17.21",
32
32
  "uuid": "^3.3.2",
33
33
  "global": "^4.4.0",
34
34
  "ip-anonymize": "^0.1.0",
35
- "@webex/common": "2.15.0",
35
+ "@webex/common": "2.16.0",
36
36
  "bowser": "^2.11.0",
37
37
  "sdp-transform": "^2.12.0",
38
38
  "readable-stream": "^3.6.0",
39
- "@webex/common-timers": "2.15.0",
39
+ "@webex/common-timers": "2.16.0",
40
40
  "btoa": "^1.2.1",
41
41
  "@webex/internal-media-core": "^0.0.6-beta",
42
42
  "javascript-state-machine": "^3.1.0",
@@ -1076,6 +1076,10 @@ export default class Meeting extends StatelessWebexPlugin {
1076
1076
  this.requiredCaptcha.captchaId = response.body.captchaID;
1077
1077
  this.requiredCaptcha.verificationImageURL = response.body.verificationImageURL;
1078
1078
  this.requiredCaptcha.verificationAudioURL = response.body.verificationAudioURL;
1079
+ })
1080
+ .catch((error) => {
1081
+ LoggerProxy.logger.error(`Meeting:index#refreshCaptcha --> Error Unable to refresh captcha for ${this.destination} - ${error}`);
1082
+ throw (error);
1079
1083
  });
1080
1084
  }
1081
1085