ソースを参照

xmpp: fix browser check

The same logic should apply to all Chromium based browsers, not just Chrome.
dev1
Saúl Ibarra Corretgé 5年前
コミット
953a107121
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      modules/xmpp/xmpp.js

+ 1
- 1
modules/xmpp/xmpp.js ファイルの表示

@@ -164,7 +164,7 @@ export default class XMPP extends Listenable {
164 164
         // this.caps.addFeature('urn:ietf:rfc:5576'); // a=ssrc
165 165
 
166 166
         // Enable Lipsync ?
167
-        if (browser.isChrome() && this.options.enableLipSync === true) {
167
+        if (browser.isChromiumBased() && this.options.enableLipSync === true) {
168 168
             logger.info('Lip-sync enabled !');
169 169
             this.caps.addFeature('http://jitsi.org/meet/lipsync');
170 170
         }

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