muting for better with laptop speakers

This commit is contained in:
talksik
2022-06-29 10:43:13 -05:00
parent 067d79328d
commit 850bfb17b8
2 changed files with 2 additions and 1 deletions
@@ -668,6 +668,7 @@ function Room({
localPeerConnection.on('signal', (signal) => {
// console.log('have a signal to make call to someone ');
// TODO: try modifying signal and offer to force stereo
$ws.emit(
ServerRequestChannels.RTC_CALL_SOMEONE_FOR_LINE,
new RtcCallRequest(otherUserId, conversation._id.toString(), signal),
+1 -1
View File
@@ -179,7 +179,7 @@ export default function FooterControls() {
aria-expanded={open ? 'true' : undefined}
>
{userLocalStream ? (
<Box height={60} width={40} ref={localVideoRef} component={'video'} autoPlay />
<Box height={60} width={40} ref={localVideoRef} component={'video'} autoPlay muted />
) : (
<Avatar alt={user.givenName} src={user.picture} />
)}