diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-08-02 23:19:15 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-08-02 23:19:25 +0300 |
commit | 68d78dd183ec639703f4033ef9047e1988c3ef0e (patch) | |
tree | fb6dd98b5fe984f7976a49a697714abe10857f0f | |
parent | fad6c45d2042e536b2602bf285b8ec0426dc2efe (diff) |
SL-17048 Fixed not cleaning session
-rw-r--r-- | indra/newview/llvoicevivox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp index 19036a3f77..cfe927ecc0 100644 --- a/indra/newview/llvoicevivox.cpp +++ b/indra/newview/llvoicevivox.cpp @@ -6188,7 +6188,7 @@ void LLVivoxVoiceClient::clearSessionHandle(const sessionStatePtr_t &session) { if (session) { - if (session->mHandle.empty()) + if (!session->mHandle.empty()) { sessionMap::iterator iter = mSessionsByHandle.find(session->mHandle); if (iter != mSessionsByHandle.end()) |