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

This commit is contained in:
Jonathan Lennox 2021-04-05 12:03:54 -04:00 committed by GitHub
parent d9693117f2
commit 6275439a91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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