ソースを参照

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

読み込み中…
キャンセル
保存