Bladeren bron

fix(ParticipantConnectionStatus): set default RTC mute timeout to 2 sec

When 1 seconds was used it seemed to be overreactive.
dev1
paweldomas 9 jaren geleden
bovenliggende
commit
c6d82ed96c
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2
    2
      modules/connectivity/ParticipantConnectionStatus.js

+ 2
- 2
modules/connectivity/ParticipantConnectionStatus.js Bestand weergeven

8
 import * as JitsiTrackEvents from '../../JitsiTrackEvents';
8
 import * as JitsiTrackEvents from '../../JitsiTrackEvents';
9
 
9
 
10
 /**
10
 /**
11
- * Default value of 1000 milliseconds for
11
+ * Default value of 2000 milliseconds for
12
  * {@link ParticipantConnectionStatus.rtcMuteTimeout}.
12
  * {@link ParticipantConnectionStatus.rtcMuteTimeout}.
13
  *
13
  *
14
  * @type {number}
14
  * @type {number}
15
  */
15
  */
16
-const DEFAULT_RTC_MUTE_TIMEOUT = 1000;
16
+const DEFAULT_RTC_MUTE_TIMEOUT = 2000;
17
 
17
 
18
 /**
18
 /**
19
  * Class is responsible for emitting
19
  * Class is responsible for emitting

Laden…
Annuleren
Opslaan