瀏覽代碼

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

j8
Jonathan Lennox 4 年之前
父節點
當前提交
6275439a91
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      resources/load-test/load-test-participant.js

+ 1
- 1
resources/load-test/load-test-participant.js 查看文件

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

Loading…
取消
儲存