diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-03-18 17:47:56 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-03-18 17:47:56 -0700 |
commit | e4dee511cab0a98e802e2c0cc12b3d8b9b90a8df (patch) | |
tree | 2f0b76f67e4eca3d03a061ad39b0cdeccd70d2ad /indra/llwebrtc | |
parent | 3794e3275c5fd2845d57cf99ae93c9632e9a6d69 (diff) |
Use LL::WorkQueue to handle transitions from llwebrtc threads to the main thread
Diffstat (limited to 'indra/llwebrtc')
-rw-r--r-- | indra/llwebrtc/llwebrtc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwebrtc/llwebrtc.cpp b/indra/llwebrtc/llwebrtc.cpp index b7501bd0e0..6400f807fd 100644 --- a/indra/llwebrtc/llwebrtc.cpp +++ b/indra/llwebrtc/llwebrtc.cpp @@ -580,7 +580,7 @@ void LLWebRTCPeerConnectionImpl::init(LLWebRTCImpl * webrtc_impl) } void LLWebRTCPeerConnectionImpl::terminate() { - mWebRTCImpl->SignalingBlockingCall( + mWebRTCImpl->PostSignalingTask( [this]() { if (mPeerConnection) |