diff options
author | Aura Linden <aura@lindenlab.com> | 2014-09-11 11:48:14 -0700 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2014-09-11 11:48:14 -0700 |
commit | 9ae872da5996d6c7d1f35fbf5f5c6edc75fae3c5 (patch) | |
tree | 6ab9d917494b681fc26b580c6fe4da7f94fb230c /indra | |
parent | b33657f3a743398082d7f3ba3f389a21e4b6fd6e (diff) |
Fix for maint-4445 losing voice dot during rapid teleports.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llvoicevivox.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index f980f886cf..7420f2d1ca 100755 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -498,13 +498,14 @@ void LLVivoxVoiceClient::connectorCreate() << "<AccountManagementServer>" << mVoiceAccountServerURI << "</AccountManagementServer>" << "<Mode>Normal</Mode>" << "<Logging>" - << "<Folder>" << logpath << "</Folder>" - << "<FileNamePrefix>Connector</FileNamePrefix>" - << "<FileNameSuffix>.log</FileNameSuffix>" - << "<LogLevel>" << loglevel << "</LogLevel>" + << "<Folder>" << logpath << "</Folder>" + << "<FileNamePrefix>Connector</FileNamePrefix>" + << "<FileNameSuffix>.log</FileNameSuffix>" + << "<LogLevel>" << loglevel << "</LogLevel>" << "</Logging>" - << "<Application>SecondLifeViewer.1</Application>" - << "</Request>\n\n\n"; + << "<Application></Application>" //Name can cause problems per vivox. + << "<MaxCalls>12</MaxCalls>" + << "</Request>\n\n\n"; writeString(stream.str()); } |