diff options
author | Igor Borovkov <iborovkov@productengine.com> | 2009-10-29 16:33:10 +0200 |
---|---|---|
committer | Igor Borovkov <iborovkov@productengine.com> | 2009-10-29 16:33:10 +0200 |
commit | 3a87aa6164e5005dfd193307d8d524cb11fd187f (patch) | |
tree | 48ade97cb1ff4d2922cdfa98a8cab4d2e1883545 | |
parent | 8c9819f946765cb54a163f4eb7f3d19115d46bb4 (diff) |
converted workaround to a fix for normal bug EXT-1918 (Region Messages crash the sender and anyone set busy).
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llimview.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 8a55ab41b9..cc848e519f 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1360,14 +1360,9 @@ void LLIMMgr::addMessage( fixed_session_name = session_name; } - bool new_session = !hasSession(session_id); + bool new_session = !hasSession(new_session_id); if (new_session) { - // *NOTE dzaporozhan - // Workaround for critical bug EXT-1918 - - // *TODO - // Investigate cases when session_id == NULL and find solution to handle those cases LLIMModel::getInstance()->newSession(new_session_id, fixed_session_name, dialog, other_participant_id); } |