浏览代码

fix(notifications) throttle join notifications for 2 seconds

master
Saúl Ibarra Corretgé 3 年前
父节点
当前提交
76a53b039f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      react/features/notifications/actions.js

+ 1
- 1
react/features/notifications/actions.js 查看文件

@@ -170,7 +170,7 @@ const _throttledNotifyParticipantConnected = throttle((dispatch: Dispatch<any>)
170 170
 
171 171
     joinedParticipantsNames = [];
172 172
 
173
-}, 500, { leading: false });
173
+}, 2000, { leading: false });
174 174
 
175 175
 /**
176 176
  * Queues the display of a notification of a participant having connected to

正在加载...
取消
保存