@webex/plugin-meetings 3.9.0-next.17 → 3.9.0-next.18

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.
@@ -458,7 +458,7 @@ var Webinar = _webexCore.WebexPlugin.extend({
458
458
  }, _callee7);
459
459
  }))();
460
460
  },
461
- version: "3.9.0-next.17"
461
+ version: "3.9.0-next.18"
462
462
  });
463
463
  var _default = exports.default = Webinar;
464
464
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -92,5 +92,5 @@
92
92
  "//": [
93
93
  "TODO: upgrade jwt-decode when moving to node 18"
94
94
  ],
95
- "version": "3.9.0-next.17"
95
+ "version": "3.9.0-next.18"
96
96
  }
@@ -3188,6 +3188,14 @@ export default class Meeting extends StatelessWebexPlugin {
3188
3188
  this.shareCAEventSentStatus.receiveStart = false;
3189
3189
  this.shareCAEventSentStatus.receiveStop = false;
3190
3190
 
3191
+ let finalBeneficiaryId = contentShare.beneficiaryId;
3192
+ // In case of attendee in webinar, the whiteboard is shared by other participants
3193
+ if (this.locusInfo?.info?.isWebinar && this.webinar?.selfIsAttendee) {
3194
+ if (!finalBeneficiaryId && whiteboardShare.beneficiaryId) {
3195
+ finalBeneficiaryId = whiteboardShare.beneficiaryId;
3196
+ }
3197
+ }
3198
+
3191
3199
  Trigger.trigger(
3192
3200
  this,
3193
3201
  {
@@ -3196,7 +3204,7 @@ export default class Meeting extends StatelessWebexPlugin {
3196
3204
  },
3197
3205
  EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE,
3198
3206
  {
3199
- memberId: contentShare.beneficiaryId,
3207
+ memberId: finalBeneficiaryId,
3200
3208
  url: contentShare.url,
3201
3209
  shareInstanceId: this.remoteShareInstanceId,
3202
3210
  annotationInfo: contentShare.annotation,
@@ -12625,7 +12625,7 @@ describe('plugin-meetings', () => {
12625
12625
  eventName: EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE,
12626
12626
  functionName: 'remoteShare',
12627
12627
  eventPayload: {
12628
- memberId: null,
12628
+ memberId: meeting.webinar.selfIsAttendee ? beneficiaryId : null,
12629
12629
  url,
12630
12630
  shareInstanceId,
12631
12631
  annotationInfo: undefined,
@@ -12680,7 +12680,7 @@ describe('plugin-meetings', () => {
12680
12680
  eventName: EVENT_TRIGGERS.MEETING_STARTED_SHARING_REMOTE,
12681
12681
  functionName: 'remoteShare',
12682
12682
  eventPayload: {
12683
- memberId: null,
12683
+ memberId: beneficiaryId,
12684
12684
  url,
12685
12685
  shareInstanceId,
12686
12686
  annotationInfo: undefined,