summaryrefslogtreecommitdiff
path: root/indra/newview/llvoicewebrtc.h
diff options
context:
space:
mode:
authorRoxie Linden <roxie@lindenlab.com>2024-10-24 10:37:40 -0700
committerRoxie Linden <roxie@lindenlab.com>2024-10-24 10:37:40 -0700
commit12ea8e4f7252029d97b0dfdd9e67d4e744ad375f (patch)
tree762611a1fa6b331dd93209a2ec11b98d9b7e8674 /indra/newview/llvoicewebrtc.h
parented6ebed0816ed82a51c770ed047e79affb40cefb (diff)
Fix issue where some connections were restarting instead of closing.
There was an issue where, when a connection close is requested, a new connection is created. Specifically, if the caps are not yet available, a new connection would start.
Diffstat (limited to 'indra/newview/llvoicewebrtc.h')
-rw-r--r--indra/newview/llvoicewebrtc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicewebrtc.h b/indra/newview/llvoicewebrtc.h
index 930018b123..b765126af3 100644
--- a/indra/newview/llvoicewebrtc.h
+++ b/indra/newview/llvoicewebrtc.h
@@ -691,7 +691,7 @@ class LLVoiceWebRTCConnection :
virtual void requestVoiceConnection() = 0;
static void requestVoiceConnectionCoro(connectionPtr_t connection) { connection->requestVoiceConnection(); }
- static void breakVoiceConnectionCoro(connectionPtr_t connection);
+ static void breakVoiceConnection(connectionPtr_t connection);
LLVoiceClientStatusObserver::EStatusType mCurrentStatus;