summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authormaxim@mnikolenko <maxim@mnikolenko>2013-01-28 19:59:13 +0200
committermaxim@mnikolenko <maxim@mnikolenko>2013-01-28 19:59:13 +0200
commitc3fd7ae17b67568a68ae967cd2d30e20db1f6b6c (patch)
tree0b692583f74b3224b839eaee9c704936e2c6469a /indra/newview
parent57795d3c89b6eee3ff68f327d2a6c840350d8dcb (diff)
CHUI-708 FIXED Call doToParticipants() only if selected conversation is p2p
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloaterimcontainer.cpp5
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);
+ }
}
}
}