@@ -93,6 +93,9 @@ import { XMPPEvents } from './service/xmpp/XMPPEvents';
9393
9494export interface IConferenceOptions {
9595 config : {
96+ _p2pConnStatusRtcMuteTimeout ?: number ;
97+ _peerConnStatusOutOfLastNTimeout ?: number ;
98+ _peerConnStatusRtcMuteTimeout ?: number ;
9699 analytics ?: {
97100 rtcstatsEnabled ?: boolean ;
98101 rtcstatsEndpoint ?: string ;
@@ -575,7 +578,7 @@ export default class JitsiConference extends Listenable {
575578 this . _statsCurrentId = config . statisticsId ?? Settings . callStatsUserName ;
576579 this . room = this . _xmpp . createRoom (
577580 this . options . name , {
578- customDomain : this . options . customDomain ,
581+ ... config ,
579582 statsId : this . _statsCurrentId
580583 } ,
581584 JitsiConference . resourceCreator
@@ -2078,7 +2081,7 @@ export default class JitsiConference extends Listenable {
20782081 _sendBridgeVideoTypeMessage ( localtrack : JitsiLocalTrack ) : void {
20792082 let videoType = ! localtrack || localtrack . isMuted ( ) ? BridgeVideoType . NONE : localtrack . getVideoType ( ) ;
20802083
2081- if ( videoType === BridgeVideoType . DESKTOP && this . _desktopSharingFrameRate > SS_DEFAULT_FRAME_RATE ) {
2084+ if ( videoType === VideoType . DESKTOP && this . _desktopSharingFrameRate > SS_DEFAULT_FRAME_RATE ) {
20822085 videoType = BridgeVideoType . DESKTOP_HIGH_FPS ;
20832086 }
20842087
@@ -2373,12 +2376,13 @@ export default class JitsiConference extends Listenable {
23732376
23742377 // Let the caller know that the XMPP login was successful.
23752378 onLoginSuccessful ?.( ) ;
2379+ const { config } = this . options ;
23762380
23772381 // Now authenticate with Jicofo and get a new session ID.
23782382 const room = xmpp . createRoom (
23792383 this . options . name ,
23802384 {
2381- customDomain : this . options . customDomain ,
2385+ ... config ,
23822386 statsId : this . _statsCurrentId
23832387 } ,
23842388 onCreateResource
0 commit comments