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;
|
const { participant } = action;
|
||||||
|
|
||||||
|
if (participant.isVirtualScreenshareParticipant) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
sendEvent(
|
sendEvent(
|
||||||
store,
|
store,
|
||||||
action.type,
|
action.type,
|
||||||
|
|
Loading…
Reference in New Issue