Explorar el Código

fix(visitors): When conference is not live always fire the event.

master
damencho hace 5 meses
padre
commit
006b25e47f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      modules/xmpp/moderator.js

+ 1
- 1
modules/xmpp/moderator.js Ver fichero

@@ -401,7 +401,7 @@ export default class Moderator extends Listenable {
401 401
         this.sipGatewayEnabled = conferenceRequest.properties.sipGatewayEnabled;
402 402
         logger.info(`Sip gateway enabled: ${this.sipGatewayEnabled}`);
403 403
 
404
-        if (conferenceRequest.properties.live === 'false' && this.options.preferVisitor) {
404
+        if (conferenceRequest.properties.live === 'false') {
405 405
             this.getNextTimeout(true);
406 406
 
407 407
             logger.info('Conference is not live.');

Loading…
Cancelar
Guardar