diff options
author | maxim@mnikolenko <maxim@mnikolenko> | 2012-12-10 15:30:46 +0200 |
---|---|---|
committer | maxim@mnikolenko <maxim@mnikolenko> | 2012-12-10 15:30:46 +0200 |
commit | 08a7f4193b18ca5c0bbaf144232eeb2678205eae (patch) | |
tree | 2f2aeed15f1077756ba8b1ce59f6c6e370036eea /indra/newview | |
parent | 53471178fed23f32fbb967b6d001c58d8612e450 (diff) |
CHUI-457 FIXED Brought back the checking
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index c36128b0bd..9e13875d20 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -919,7 +919,10 @@ void LLFloaterIMContainer::doToParticipants(const std::string& command, uuid_vec } else if ("im" == command) { - LLAvatarActions::startIM(userID); + if (gAgent.getID() != userID) + { + LLAvatarActions::startIM(userID); + } } else if ("offer_teleport" == command) { |