This commit is contained in:
Audric Ackermann 2021-10-29 16:24:22 +11:00
parent 03d8a233f4
commit 390af96514
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ window.isBehindProxy = () => Boolean(config.proxyUrl);
window.lokiFeatureFlags = {
useOnionRequests: true,
useCallMessage: false,
useCallMessage: true,
};
window.isBeforeVersion = (toCheck, baseVersion) => {

View File

@ -343,7 +343,7 @@ export const InConversationCallContainer = () => {
showAudioInputMenu(currentConnectedAudioInputs, e);
}}
/>
<ShowInFullScreenButton />
<ShowInFullScreenButton isDisabled={remoteStreamVideoIsMuted} />
</InConvoCallWindowControls>
<VideoInputMenu triggerId={videoTriggerId} camerasList={currentConnectedCameras} />
<AudioInputMenu triggerId={audioTriggerId} audioInputsList={currentConnectedAudioInputs} />

View File

@ -96,7 +96,7 @@ const configuration: RTCConfiguration = {
credential: 'webrtc',
},
],
iceTransportPolicy: 'relay',
// iceTransportPolicy: 'relay', // for now, this cause the connection to break after 30-40 sec if we enable this
};
let selectedCameraId: string = INPUT_DISABLED_DEVICE_ID;