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

This commit is contained in:
tmoldovan8x8 2022-08-10 16:34:18 +03:00 committed by GitHub
parent 00221b7482
commit 82c047707f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

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