diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2012-11-20 15:18:19 +0200 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2012-11-20 15:18:19 +0200 |
commit | b87974df51c4caf12c47009dec03b7dc8afe543d (patch) | |
tree | 0ad98a0bad15baaf2bc4f67b723e2c7181a370f7 /indra | |
parent | 668761e1196517913688bab6763bd9d2e11359b0 (diff) |
CHUI-447 Additional fix(Show only display name for user that starts conversation )
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llavataractions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llavataractions.cpp b/indra/newview/llavataractions.cpp index 4f57498506..f5d8998ce5 100755 --- a/indra/newview/llavataractions.cpp +++ b/indra/newview/llavataractions.cpp @@ -180,7 +180,7 @@ void LLAvatarActions::offerTeleport(const uuid_vec_t& ids) static void on_avatar_name_cache_start_im(const LLUUID& agent_id, const LLAvatarName& av_name) { - std::string name = av_name.getCompleteName(); + std::string name = av_name.mDisplayName; LLUUID session_id = gIMMgr->addSession(name, IM_NOTHING_SPECIAL, agent_id); if (session_id != LLUUID::null) { |