Explorar el Código

fix(quality) Enable layer suspension by default.

This is needed for screensharing to work as expected on chrome in unified plan.
tags/v0.0.2
Jaya Allamsetty hace 4 años
padre
commit
735943b32d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      modules/qualitycontrol/SendVideoController.js

+ 1
- 1
modules/qualitycontrol/SendVideoController.js Ver fichero

@@ -19,7 +19,7 @@ export class SendVideoController {
19 19
      */
20 20
     constructor(conference, rtc) {
21 21
         this.conference = conference;
22
-        this.layerSuspensionEnabled = conference.options?.config?.enableLayerSuspension;
22
+        this.layerSuspensionEnabled = conference.options?.config?.enableLayerSuspension ?? true;
23 23
         this.rtc = rtc;
24 24
         this.conference.on(
25 25
             JitsiConferenceEvents._MEDIA_SESSION_STARTED,

Loading…
Cancelar
Guardar