浏览代码

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

master
damencho 5 个月前
父节点
当前提交
006b25e47f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      modules/xmpp/moderator.js

+ 1
- 1
modules/xmpp/moderator.js 查看文件

@@ -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.');

正在加载...
取消
保存