diff options
| -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); +        	}          }      }  } | 
