Ver código fonte

Load-test: Fix getId call. (#8941)

master
Jonathan Lennox 4 anos atrás
pai
commit
6275439a91
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      resources/load-test/load-test-participant.js

+ 1
- 1
resources/load-test/load-test-participant.js Ver arquivo

@@ -133,7 +133,7 @@ function updateLastN() {
133 133
 function setNumberOfParticipants() {
134 134
     $('#participants').text(numParticipants);
135 135
     /* jitsi-meet's current Tile View behavior. */
136
-    const ids = room.getParticipants().map(participant => participant.id);
136
+    const ids = room.getParticipants().map(participant => participant.getId());
137 137
     room.selectParticipants(ids);
138 138
     updateMaxFrameHeight();
139 139
     updateLastN();

Carregando…
Cancelar
Salvar