|
|
@@ -1929,7 +1929,7 @@ JitsiConference.prototype._onIncomingCallP2P = function(
|
|
1929
|
1929
|
|
|
1930
|
1930
|
let rejectReason;
|
|
1931
|
1931
|
|
|
1932
|
|
- if (!this.isP2PEnabled() && !this.isP2PTestModeEnabled()) {
|
|
|
1932
|
+ if (!this.isP2PEnabled() && !this.isP2PTestModeEnabled() && (browser.isFirefox() || browser.isWebKitBased())) {
|
|
1933
|
1933
|
rejectReason = {
|
|
1934
|
1934
|
reason: 'decline',
|
|
1935
|
1935
|
reasonDescription: 'P2P disabled',
|
|
|
@@ -3193,7 +3193,7 @@ JitsiConference.prototype._suspendMediaTransferForJvbConnection = function() {
|
|
3193
|
3193
|
* @private
|
|
3194
|
3194
|
*/
|
|
3195
|
3195
|
JitsiConference.prototype._maybeStartOrStopP2P = function(userLeftEvent) {
|
|
3196
|
|
- if (!this.isP2PEnabled() || this.isP2PTestModeEnabled()) {
|
|
|
3196
|
+ if (!this.isP2PEnabled() || this.isP2PTestModeEnabled() || browser.isFirefox() || browser.isWebKitBased()) {
|
|
3197
|
3197
|
logger.info('Auto P2P disabled');
|
|
3198
|
3198
|
|
|
3199
|
3199
|
return;
|