Browse Source

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

master
damencho 5 months ago
parent
commit
006b25e47f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/xmpp/moderator.js

+ 1
- 1
modules/xmpp/moderator.js View File

401
         this.sipGatewayEnabled = conferenceRequest.properties.sipGatewayEnabled;
401
         this.sipGatewayEnabled = conferenceRequest.properties.sipGatewayEnabled;
402
         logger.info(`Sip gateway enabled: ${this.sipGatewayEnabled}`);
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
             this.getNextTimeout(true);
405
             this.getNextTimeout(true);
406
 
406
 
407
             logger.info('Conference is not live.');
407
             logger.info('Conference is not live.');

Loading…
Cancel
Save