@webex/plugin-meetings 1.151.6 → 1.151.7

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.
@@ -1116,6 +1116,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
1116
1116
 
1117
1117
  _this.locusInfo.init(attrs.locus ? attrs.locus : {});
1118
1118
 
1119
+ _this.isCreated = true;
1119
1120
  return _this;
1120
1121
  }
1121
1122
  /**
@@ -3637,13 +3638,17 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
3637
3638
  joinSuccess = resolve;
3638
3639
  });
3639
3640
 
3640
- _loggerProxy.default.logger.log("Meeting:index#join --> Generating a new correlation id for meeting ".concat(this.id));
3641
+ if (this.isCreated) {
3642
+ this.isCreated = false;
3643
+ } else {
3644
+ _loggerProxy.default.logger.log("Meeting:index#join --> Generating a new correlation id for meeting ".concat(this.id));
3641
3645
 
3642
- _loggerProxy.default.logger.log("Meeting:index#join --> Previous correlation id ".concat(this.correlationId));
3646
+ _loggerProxy.default.logger.log("Meeting:index#join --> Previous correlation id ".concat(this.correlationId));
3643
3647
 
3644
- this.setCorrelationId(_uuid.default.v4());
3648
+ this.setCorrelationId(_uuid.default.v4());
3645
3649
 
3646
- _loggerProxy.default.logger.log("Meeting:index#join --> New correlation id ".concat(this.correlationId));
3650
+ _loggerProxy.default.logger.log("Meeting:index#join --> New correlation id ".concat(this.correlationId));
3651
+ }
3647
3652
 
3648
3653
  if (options.rejoin) {
3649
3654
  this.meetingFiniteStateMachine.reset();