fix(mobile externalApi) suppress participant joined and left events for virtual screenshare
This commit is contained in:
parent
00221b7482
commit
82c047707f
|
@ -182,6 +182,10 @@ MiddlewareRegistry.register(store => next => action => {
|
|||
|
||||
const { participant } = action;
|
||||
|
||||
if (participant.isVirtualScreenshareParticipant) {
|
||||
break;
|
||||
}
|
||||
|
||||
sendEvent(
|
||||
store,
|
||||
action.type,
|
||||
|
|
Loading…
Reference in New Issue