fix(mobile externalApi) suppress participant joined and left events for virtual screenshare

pull/12051/head jitsi-meet_7658
tmoldovan8x8 3 years ago committed by GitHub
parent 00221b7482
commit 82c047707f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      react/features/mobile/external-api/middleware.js

@ -182,6 +182,10 @@ MiddlewareRegistry.register(store => next => action => {
const { participant } = action;
if (participant.isVirtualScreenshareParticipant) {
break;
}
sendEvent(
store,
action.type,

Loading…
Cancel
Save