Parcourir la source

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

j8
Jonathan Lennox il y a 4 ans
Parent
révision
6275439a91
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      resources/load-test/load-test-participant.js

+ 1
- 1
resources/load-test/load-test-participant.js Voir le fichier

@@ -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();

Chargement…
Annuler
Enregistrer