mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix video rooms sometimes connecting muted when they shouldn't (#22125)
This commit is contained in:
parent
1783645108
commit
cdf95ab8b7
@ -355,8 +355,8 @@ function joinConference(audioDevice?: string, videoDevice?: string) {
|
|||||||
configOverwrite: {
|
configOverwrite: {
|
||||||
subject: roomName,
|
subject: roomName,
|
||||||
startAudioOnly,
|
startAudioOnly,
|
||||||
startWithAudioMuted: !audioDevice,
|
startWithAudioMuted: audioDevice == null,
|
||||||
startWithVideoMuted: !videoDevice,
|
startWithVideoMuted: videoDevice == null,
|
||||||
} as any,
|
} as any,
|
||||||
jwt: jwt,
|
jwt: jwt,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user