Browse Source

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

master
Jonathan Lennox 4 years ago
parent
commit
6275439a91
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      resources/load-test/load-test-participant.js

+ 1
- 1
resources/load-test/load-test-participant.js View File

133
 function setNumberOfParticipants() {
133
 function setNumberOfParticipants() {
134
     $('#participants').text(numParticipants);
134
     $('#participants').text(numParticipants);
135
     /* jitsi-meet's current Tile View behavior. */
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
     room.selectParticipants(ids);
137
     room.selectParticipants(ids);
138
     updateMaxFrameHeight();
138
     updateMaxFrameHeight();
139
     updateLastN();
139
     updateLastN();

Loading…
Cancel
Save