diff options
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llconversationlog.cpp | 2 | ||||
-rw-r--r-- | indra/newview/llimview.cpp | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp index c68a96ef5d..7bd6ef8cd7 100644 --- a/indra/newview/llconversationlog.cpp +++ b/indra/newview/llconversationlog.cpp @@ -228,7 +228,7 @@ void LLConversationLog::logConversation(const LLUUID& session_id, BOOL has_offli const LLIMModel::LLIMSession* session = LLIMModel::instance().findIMSession(session_id); LLConversation* conversation = findConversation(session); - if (session) + if (session && session->mOtherParticipantID != gAgentID) { if (conversation) { diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index aaddcacbb5..5acb0b6374 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2546,12 +2546,6 @@ void LLIMMgr::addMessage( { LLUUID other_participant_id = target_id; - // Agent can't create session with himself - if (other_participant_id == gAgentID) - { - return; - } - LLUUID new_session_id = session_id; if (new_session_id.isNull()) { |