fix(API): early audio muted status
Apply the same early audio muted logic as for the video.
This commit is contained in:
@@ -35,7 +35,9 @@ function initCommands() {
|
||||
commands = {
|
||||
'display-name':
|
||||
APP.conference.changeLocalDisplayName.bind(APP.conference),
|
||||
'toggle-audio': () => APP.conference.toggleAudioMuted(true),
|
||||
'toggle-audio': () => {
|
||||
APP.conference.toggleAudioMuted(false /* no UI */);
|
||||
},
|
||||
'toggle-video': () => {
|
||||
APP.conference.toggleVideoMuted(false /* no UI */);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user