summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Borovkov <iborovkov@productengine.com>2009-10-29 16:33:10 +0200
committerIgor Borovkov <iborovkov@productengine.com>2009-10-29 16:33:10 +0200
commit3a87aa6164e5005dfd193307d8d524cb11fd187f (patch)
tree48ade97cb1ff4d2922cdfa98a8cab4d2e1883545
parent8c9819f946765cb54a163f4eb7f3d19115d46bb4 (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.cpp7
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);
}