@webex/plugin-meetings 1.153.0 → 1.153.1
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 -3
- package/dist/meeting/index.js.map +1 -1
- package/dist/peer-connection-manager/index.js +6 -0
- package/dist/peer-connection-manager/index.js.map +1 -1
- package/dist/peer-connection-manager/util.js +28 -0
- package/dist/peer-connection-manager/util.js.map +1 -0
- package/package.json +5 -5
- package/src/meeting/index.js +3 -3
- package/src/peer-connection-manager/index.js +6 -0
- package/src/peer-connection-manager/util.js +19 -0
- package/test/unit/spec/meeting/index.js +1 -1
- package/test/unit/spec/peerconnection-manager/utils.js +25 -0
package/dist/meeting/index.js
CHANGED
|
@@ -1156,7 +1156,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1156
1156
|
|
|
1157
1157
|
_this.locusInfo.init(attrs.locus ? attrs.locus : {});
|
|
1158
1158
|
|
|
1159
|
-
_this.
|
|
1159
|
+
_this.hasJoinedOnce = false;
|
|
1160
1160
|
return _this;
|
|
1161
1161
|
}
|
|
1162
1162
|
/**
|
|
@@ -3874,8 +3874,8 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3874
3874
|
joinSuccess = resolve;
|
|
3875
3875
|
});
|
|
3876
3876
|
|
|
3877
|
-
if (this.
|
|
3878
|
-
this.
|
|
3877
|
+
if (!this.hasJoinedOnce) {
|
|
3878
|
+
this.hasJoinedOnce = true;
|
|
3879
3879
|
} else {
|
|
3880
3880
|
_loggerProxy.default.logger.log("Meeting:index#join --> Generating a new correlation id for meeting ".concat(this.id));
|
|
3881
3881
|
|