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.
This commit is contained in:
Inusaito Sayori
2013-05-19 15:21:08 -04:00
parent c77c0b641b
commit 0c3f8f77e1

View File

@@ -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())