diff options
author | Roxie Linden <roxie@lindenlab.com> | 2024-05-10 09:36:38 -0700 |
---|---|---|
committer | Roxie Linden <roxie@lindenlab.com> | 2024-05-10 09:36:38 -0700 |
commit | 27e4913b5c5703404c6944d776c43002b7b9da8c (patch) | |
tree | 2cfc099a69a69fe268331bebb9ac6ecce9bf1e74 /indra | |
parent | 70af754dc09e29a492828e7cc4ed5db8d32eda3d (diff) |
Fix issue where groups/adhoc chats were named with the initiators display name
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llimview.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index c9b4454f3f..2c78676f46 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2966,10 +2966,6 @@ void LLIncomingCallDialog::processCallResponse(S32 response, const LLSD &payload LLUUID session_id = payload["session_id"].asUUID(); LLUUID caller_id = payload["caller_id"].asUUID(); std::string session_name = payload["session_name"].asString(); - if (session_name.empty()) - { - session_name = payload["caller_name"].asString(); - } EInstantMessage type = (EInstantMessage)payload["type"].asInteger(); LLIMMgr::EInvitationType inv_type = (LLIMMgr::EInvitationType)payload["inv_type"].asInteger(); bool voice = true; |