Merge pull request #12768 from mariogasparoni/merge-2.3.x-into-develop
chore: merge 2.3.6+ into develop
This commit is contained in:
commit
2a3ae718e2
@ -285,13 +285,14 @@ class AudioModal extends Component {
|
||||
handleJoinListenOnly() {
|
||||
const {
|
||||
joinListenOnly,
|
||||
isConnecting,
|
||||
} = this.props;
|
||||
|
||||
const {
|
||||
disableActions,
|
||||
} = this.state;
|
||||
|
||||
if (disableActions) return;
|
||||
if (disableActions && isConnecting) return;
|
||||
|
||||
this.setState({
|
||||
disableActions: true,
|
||||
@ -313,13 +314,14 @@ class AudioModal extends Component {
|
||||
handleJoinMicrophone() {
|
||||
const {
|
||||
joinMicrophone,
|
||||
isConnecting,
|
||||
} = this.props;
|
||||
|
||||
const {
|
||||
disableActions,
|
||||
} = this.state;
|
||||
|
||||
if (disableActions) return;
|
||||
if (disableActions && isConnecting) return;
|
||||
|
||||
this.setState({
|
||||
hasError: false,
|
||||
|
@ -372,8 +372,12 @@ class AudioManager {
|
||||
|
||||
if (!this.logAudioJoinTime) {
|
||||
this.logAudioJoinTime = true;
|
||||
logger.info({ logCode: 'audio_mic_join_time' }, 'Time needed to '
|
||||
+ `connect audio (seconds): ${secondsToActivateAudio}`);
|
||||
logger.info({
|
||||
logCode: 'audio_mic_join_time',
|
||||
extraInfo: {
|
||||
secondsToActivateAudio,
|
||||
},
|
||||
}, `Time needed to connect audio (seconds): ${secondsToActivateAudio}`);
|
||||
}
|
||||
|
||||
if (!this.isEchoTest) {
|
||||
|
Loading…
Reference in New Issue
Block a user