From bf10ab4bb19623d0a556e90178c7ac8a6193fcd1 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Tue, 23 Jul 2019 02:29:34 -0400 Subject: [PATCH] Fix single line profile button for Group IMs started by others --- indra/newview/llimpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index b88fa6e40..0558c46c1 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -1122,7 +1122,7 @@ void LLFloaterIMPanel::onFlyoutCommit(LLComboBox* flyout, const LLSD& value) switch (mSessionType) { case SUPPORT_SESSION: - case GROUP_SESSION: LLGroupActions::show(mOtherParticipantUUID); return; + case GROUP_SESSION: LLGroupActions::show(mSessionUUID); return; case P2P_SESSION: LLAvatarActions::showProfile(mOtherParticipantUUID); return; default: onClickHistory(); return; // If there's no profile for this type, we should be the history button. }