Browse Source

fix(notifications) throttle join notifications for 2 seconds

master
Saúl Ibarra Corretgé 3 years ago
parent
commit
76a53b039f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/notifications/actions.js

+ 1
- 1
react/features/notifications/actions.js View File

170
 
170
 
171
     joinedParticipantsNames = [];
171
     joinedParticipantsNames = [];
172
 
172
 
173
-}, 500, { leading: false });
173
+}, 2000, { leading: false });
174
 
174
 
175
 /**
175
 /**
176
  * Queues the display of a notification of a participant having connected to
176
  * Queues the display of a notification of a participant having connected to

Loading…
Cancel
Save