From 6275439a914f23cd670bfa9d6ec084c35df141ce Mon Sep 17 00:00:00 2001 From: Jonathan Lennox Date: Mon, 5 Apr 2021 12:03:54 -0400 Subject: [PATCH] Load-test: Fix getId call. (#8941) --- resources/load-test/load-test-participant.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/load-test/load-test-participant.js b/resources/load-test/load-test-participant.js index c519d06d7..ffd1ed210 100644 --- a/resources/load-test/load-test-participant.js +++ b/resources/load-test/load-test-participant.js @@ -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();