auto select the first audio input on connection success webrtc

pull/2039/head
Audric Ackermann 3 years ago
parent d5f6180ae6
commit 53289298a9
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -558,6 +558,10 @@ function handleConnectionStateChanged(pubkey: string) {
closeVideoCall();
} else if (peerConnection?.connectionState === 'connected') {
setIsRinging(false);
const firstAudioInput = audioInputsList?.[0].deviceId || undefined;
if (firstAudioInput) {
void selectAudioInputByDeviceId(firstAudioInput);
}
window.inboxStore?.dispatch(callConnected({ pubkey }));
}
}

Loading…
Cancel
Save