mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
Fix video rooms sometimes connecting muted when they shouldn't (#22125)
This commit is contained in:
parent
1783645108
commit
cdf95ab8b7
1 changed files with 2 additions and 2 deletions
|
@ -355,8 +355,8 @@ function joinConference(audioDevice?: string, videoDevice?: string) {
|
|||
configOverwrite: {
|
||||
subject: roomName,
|
||||
startAudioOnly,
|
||||
startWithAudioMuted: !audioDevice,
|
||||
startWithVideoMuted: !videoDevice,
|
||||
startWithAudioMuted: audioDevice == null,
|
||||
startWithVideoMuted: videoDevice == null,
|
||||
} as any,
|
||||
jwt: jwt,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue