Merge branch 'SL-15999' of ssh://bitbucket.org/lindenlab/viewer into SL-15999

master
Brad Payne (Vir Linden) 2021-09-27 13:53:23 +01:00
commit ec16b30f3b
1 changed files with 3 additions and 1 deletions

View File

@ -5358,7 +5358,9 @@ void LLVivoxVoiceClient::setVoiceEnabled(bool enabled)
bool LLVivoxVoiceClient::voiceEnabled()
{
return gSavedSettings.getBOOL("EnableVoiceChat") && !gSavedSettings.getBOOL("CmdLineDisableVoice");
return gSavedSettings.getBOOL("EnableVoiceChat") &&
!gSavedSettings.getBOOL("CmdLineDisableVoice") &&
!gNonInteractive;
}
void LLVivoxVoiceClient::setLipSyncEnabled(BOOL enabled)