Load-test: Fix getId call. (#8941)
This commit is contained in:
parent
d9693117f2
commit
6275439a91
|
@ -133,7 +133,7 @@ function updateLastN() {
|
||||||
function setNumberOfParticipants() {
|
function setNumberOfParticipants() {
|
||||||
$('#participants').text(numParticipants);
|
$('#participants').text(numParticipants);
|
||||||
/* jitsi-meet's current Tile View behavior. */
|
/* 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);
|
room.selectParticipants(ids);
|
||||||
updateMaxFrameHeight();
|
updateMaxFrameHeight();
|
||||||
updateLastN();
|
updateLastN();
|
||||||
|
|
Loading…
Reference in New Issue