feat(replace-participant): Replace participant with same jwt in the conf

- update lib-jitsi-meet to version with support for replacing participant
This commit is contained in:
hmuresan
2021-06-11 11:58:45 +03:00
committed by Horatiu Muresan
parent 60188794b5
commit 342dd4ceca
15 changed files with 83 additions and 28 deletions

View File

@@ -113,7 +113,7 @@ MiddlewareRegistry.register(store => next => action => {
id: getLocalParticipant(store.getState()).id,
local: true
},
{ id: action.participant.getId() }
{ id: action.participant ? action.participant.getId() : undefined }
);
break;