Fix video rooms sometimes connecting muted when they shouldn't (#22125)
							parent
							
								
									1783645108
								
							
						
					
					
						commit
						cdf95ab8b7
					
				|  | @ -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 New Issue
	
	 Robin
						Robin