mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-29 21:15:19 +00:00
use default device for unmute again
Signed-off-by: Timo K <toger5@hotmail.de>
This commit is contained in:
@@ -245,10 +245,7 @@ export function useLivekit(
|
|||||||
audioMuteUpdating.current = true;
|
audioMuteUpdating.current = true;
|
||||||
trackPublication = await participant.setMicrophoneEnabled(
|
trackPublication = await participant.setMicrophoneEnabled(
|
||||||
buttonEnabled.current.audio,
|
buttonEnabled.current.audio,
|
||||||
{
|
room.options.audioCaptureDefaults,
|
||||||
...room.options.audioCaptureDefaults,
|
|
||||||
deviceId: getValue(devices.audioInput.selected$)?.id,
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
audioMuteUpdating.current = false;
|
audioMuteUpdating.current = false;
|
||||||
break;
|
break;
|
||||||
@@ -256,10 +253,7 @@ export function useLivekit(
|
|||||||
videoMuteUpdating.current = true;
|
videoMuteUpdating.current = true;
|
||||||
trackPublication = await participant.setCameraEnabled(
|
trackPublication = await participant.setCameraEnabled(
|
||||||
buttonEnabled.current.video,
|
buttonEnabled.current.video,
|
||||||
{
|
room.options.videoCaptureDefaults,
|
||||||
...room.options.videoCaptureDefaults,
|
|
||||||
deviceId: getValue(devices.videoInput.selected$)?.id,
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
videoMuteUpdating.current = false;
|
videoMuteUpdating.current = false;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user