diff options
author | maxim@mnikolenko <maxim@mnikolenko> | 2013-01-28 19:59:13 +0200 |
---|---|---|
committer | maxim@mnikolenko <maxim@mnikolenko> | 2013-01-28 19:59:13 +0200 |
commit | c3fd7ae17b67568a68ae967cd2d30e20db1f6b6c (patch) | |
tree | 0b692583f74b3224b839eaee9c704936e2c6469a | |
parent | 57795d3c89b6eee3ff68f327d2a6c840350d8dcb (diff) |
CHUI-708 FIXED Call doToParticipants() only if selected conversation is p2p
-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 ff6234fa27..c272e5e391 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -1086,7 +1086,10 @@ void LLFloaterIMContainer::doToSelectedConversation(const std::string& command, } else { - doToParticipants(command, selectedIDS); + if(conversationItem->getType() == LLConversationItem::CONV_SESSION_1_ON_1) + { + doToParticipants(command, selectedIDS); + } } } } |