Skip to content
Snippets Groups Projects
Commit 02e4068b authored by Paul ProductEngine's avatar Paul ProductEngine
Browse files

CHUI-306 FIXED (Selecting IM option for Group in conversation log does not...

CHUI-306 FIXED (Selecting IM option for Group in conversation log does not start an IM if you did not initiate the conversation)

- To start group call or group chat, group_id should be passed as an argument to LLGrupActions, not participant_id.
parent 41c85d35
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,7 @@ void LLConversationLogList::onCustomAction(const LLSD& userdata)
break;
case LLIMModel::LLIMSession::GROUP_SESSION:
LLGroupActions::startIM(selected_id);
LLGroupActions::startIM(getSelectedConversation()->getSessionID());
break;
default:
......@@ -209,7 +209,7 @@ void LLConversationLogList::onCustomAction(const LLSD& userdata)
break;
case LLIMModel::LLIMSession::GROUP_SESSION:
LLGroupActions::startCall(selected_id);
LLGroupActions::startCall(getSelectedConversation()->getSessionID());
break;
default:
......@@ -225,7 +225,7 @@ void LLConversationLogList::onCustomAction(const LLSD& userdata)
break;
case LLIMModel::LLIMSession::GROUP_SESSION:
LLGroupActions::show(selected_id);
LLGroupActions::show(getSelectedConversation()->getSessionID());
break;
default:
......
......@@ -168,7 +168,7 @@ void LLConversationLogListItem::onDoubleClick()
break;
case LLIMModel::LLIMSession::GROUP_SESSION:
LLGroupActions::startIM(mConversation->getParticipantID());
LLGroupActions::startIM(mConversation->getSessionID());
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment