From 0c3f8f77e1006a5aa0006aabe962564d2bb30f9f Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Sun, 19 May 2013 15:21:08 -0400 Subject: [PATCH] Fix the issue in which during conference chats the user's name is displayed as legacy, not linked, the wrong color, and their chat is not in their chosen color Removes the "not sure why" block of code that sets the other_participant_id null if it's really from the user. I have no idea why this ever was needed, it's a hack for certain, and only breaks things now. --- indra/newview/llimview.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 07ed26011..45362705d 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -482,13 +482,6 @@ void LLIMMgr::addMessage( return; } - //not sure why...but if it is from ourselves we set the target_id - //to be NULL, which seems to be breaking links on group chats, so let's not there. - if (other_participant_id == gAgent.getID() && !gAgent.isInGroup(session_id)) - { - other_participant_id = LLUUID::null; - } - LLFloaterIMPanel* floater; LLUUID new_session_id = session_id; if (new_session_id.isNull())