Skip to content

Commit

Permalink
Fix video rooms sometimes connecting muted when they shouldn't (#22125)
Browse files Browse the repository at this point in the history
  • Loading branch information
robintown authored May 9, 2022
1 parent 1783645 commit cdf95ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vector/jitsi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit cdf95ab

Please sign in to comment.