Skip to content
Snippets Groups Projects
Commit 83da4448 authored by Ramon Souza's avatar Ramon Souza
Browse files

fix attendee auto join audio locked

parent d32fdc5c
No related branches found
No related tags found
No related merge requests found
......@@ -169,10 +169,9 @@ class AudioModal extends Component {
} = this.props;
if (!isUsingAudio) {
if (forceListenOnlyAttendee) return this.handleJoinListenOnly();
if (forceListenOnlyAttendee || audioLocked) return this.handleJoinListenOnly();
if ((joinFullAudioImmediately && !listenOnlyMode)
|| audioLocked) return this.handleJoinMicrophone();
if (joinFullAudioImmediately && !listenOnlyMode) return this.handleJoinMicrophone();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment