pull/2015/head
Audric Ackermann 4 years ago
parent 03d8a233f4
commit 390af96514
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

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

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

@ -96,7 +96,7 @@ const configuration: RTCConfiguration = {
credential: 'webrtc', 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; let selectedCameraId: string = INPUT_DISABLED_DEVICE_ID;

Loading…
Cancel
Save