소스 검색

fix(p2p) Enable p2p for Safari

master
Jaya Allamsetty 2 년 전
부모
커밋
c24537454c
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1
    3
      JitsiConference.js

+ 1
- 3
JitsiConference.js 파일 보기

2164
             errorMsg: 'P2P across two endpoints in different SDP modes is disabled'
2164
             errorMsg: 'P2P across two endpoints in different SDP modes is disabled'
2165
         };
2165
         };
2166
     } else if ((!this.isP2PEnabled() && !this.isP2PTestModeEnabled())
2166
     } else if ((!this.isP2PEnabled() && !this.isP2PTestModeEnabled())
2167
-        || browser.isFirefox()
2168
-        || browser.isWebKitBased()) {
2167
+        || browser.isFirefox()) {
2169
         rejectReason = {
2168
         rejectReason = {
2170
             reason: 'decline',
2169
             reason: 'decline',
2171
             reasonDescription: 'P2P disabled',
2170
             reasonDescription: 'P2P disabled',
3462
     if (!this.isP2PEnabled()
3461
     if (!this.isP2PEnabled()
3463
             || this.isP2PTestModeEnabled()
3462
             || this.isP2PTestModeEnabled()
3464
             || browser.isFirefox()
3463
             || browser.isFirefox()
3465
-            || browser.isWebKitBased()
3466
             || this.isE2EEEnabled()) {
3464
             || this.isE2EEEnabled()) {
3467
         logger.info('Auto P2P disabled');
3465
         logger.info('Auto P2P disabled');
3468
 
3466
 

Loading…
취소
저장