diff options
author | Merov Linden <merov@lindenlab.com> | 2013-02-04 14:41:58 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2013-02-04 14:41:58 -0800 |
commit | 3e73b107d37e293b4e4cde91734e1e8251ba6b72 (patch) | |
tree | 4ca8f25d99e18d37707f889a93f3ed1eacf8d75b /indra | |
parent | 97930c72b6f869e9bb47cda7d9ecfccf1a25a3fa (diff) |
CHUI-677 : Added a warning printout in the log to capture context of this bug.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llimview.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 5acb0b6374..1cceb68e2a 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1591,6 +1591,11 @@ LLUUID LLIMMgr::computeSessionID( session_id = other_participant_id ^ agent_id; } } + + if (gAgent.isInGroup(session_id) && (session_id != other_participant_id)) + { + llwarns << "Group session id different from group id: IM type = " << dialog << ", session id = " << session_id << ", group id = " << other_participant_id << llendl; + } return session_id; } |