@webex/plugin-meetings 3.3.1-next.22 → 3.3.1-next.24
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/breakouts/breakout.js +1 -1
- package/dist/breakouts/index.js +1 -1
- package/dist/interpretation/index.js +1 -1
- package/dist/interpretation/siLanguage.js +1 -1
- package/dist/meeting/index.js +13 -4
- package/dist/meeting/index.js.map +1 -1
- package/dist/webinar/index.js +1 -1
- package/package.json +5 -5
- package/src/meeting/index.ts +10 -1
- package/test/unit/spec/meeting/index.js +32 -0
package/dist/breakouts/index.js
CHANGED
|
@@ -1046,7 +1046,7 @@ var Breakouts = _webexCore.WebexPlugin.extend({
|
|
|
1046
1046
|
this.trigger(_constants.BREAKOUTS.EVENTS.ASK_RETURN_TO_MAIN);
|
|
1047
1047
|
}
|
|
1048
1048
|
},
|
|
1049
|
-
version: "3.3.1-next.
|
|
1049
|
+
version: "3.3.1-next.24"
|
|
1050
1050
|
});
|
|
1051
1051
|
var _default = exports.default = Breakouts;
|
|
1052
1052
|
//# sourceMappingURL=index.js.map
|
|
@@ -373,7 +373,7 @@ var SimultaneousInterpretation = _webexCore.WebexPlugin.extend({
|
|
|
373
373
|
throw error;
|
|
374
374
|
});
|
|
375
375
|
},
|
|
376
|
-
version: "3.3.1-next.
|
|
376
|
+
version: "3.3.1-next.24"
|
|
377
377
|
});
|
|
378
378
|
var _default = exports.default = SimultaneousInterpretation;
|
|
379
379
|
//# sourceMappingURL=index.js.map
|
|
@@ -18,7 +18,7 @@ var SILanguage = _webexCore.WebexPlugin.extend({
|
|
|
18
18
|
languageCode: 'number',
|
|
19
19
|
languageName: 'string'
|
|
20
20
|
},
|
|
21
|
-
version: "3.3.1-next.
|
|
21
|
+
version: "3.3.1-next.24"
|
|
22
22
|
});
|
|
23
23
|
var _default = exports.default = SILanguage;
|
|
24
24
|
//# sourceMappingURL=siLanguage.js.map
|
package/dist/meeting/index.js
CHANGED
|
@@ -4985,6 +4985,7 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4985
4985
|
_this$locusUrl,
|
|
4986
4986
|
_leaveError,
|
|
4987
4987
|
leaveError,
|
|
4988
|
+
shouldRetry,
|
|
4988
4989
|
_args15 = arguments;
|
|
4989
4990
|
return _regenerator.default.wrap(function _callee15$(_context15) {
|
|
4990
4991
|
while (1) switch (_context15.prev = _context15.next) {
|
|
@@ -5087,21 +5088,29 @@ var Meeting = exports.default = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5087
5088
|
}, {
|
|
5088
5089
|
type: _context15.t0.name
|
|
5089
5090
|
});
|
|
5090
|
-
|
|
5091
|
-
|
|
5091
|
+
|
|
5092
|
+
// if this was the first attempt, let's do a retry
|
|
5093
|
+
shouldRetry = !isRetry;
|
|
5094
|
+
if (_internalPluginMetrics.CallDiagnosticUtils.isSdpOfferCreationError(_context15.t0)) {
|
|
5095
|
+
// errors related to offer creation (for example missing H264 codec) will happen again no matter how many times we try,
|
|
5096
|
+
// so there is no point doing a retry
|
|
5097
|
+
shouldRetry = false;
|
|
5098
|
+
}
|
|
5099
|
+
if (!shouldRetry) {
|
|
5100
|
+
_context15.next = 62;
|
|
5092
5101
|
break;
|
|
5093
5102
|
}
|
|
5094
5103
|
_loggerProxy.default.logger.warn('Meeting:index#joinWithMedia --> retrying call to joinWithMedia');
|
|
5095
5104
|
this.joinWithMediaRetryInfo.isRetry = true;
|
|
5096
5105
|
this.joinWithMediaRetryInfo.prevJoinResponse = joinResponse;
|
|
5097
5106
|
return _context15.abrupt("return", this.joinWithMedia(options));
|
|
5098
|
-
case
|
|
5107
|
+
case 62:
|
|
5099
5108
|
this.joinWithMediaRetryInfo = {
|
|
5100
5109
|
isRetry: false,
|
|
5101
5110
|
prevJoinResponse: undefined
|
|
5102
5111
|
};
|
|
5103
5112
|
throw _context15.t0;
|
|
5104
|
-
case
|
|
5113
|
+
case 64:
|
|
5105
5114
|
case "end":
|
|
5106
5115
|
return _context15.stop();
|
|
5107
5116
|
}
|