From 28e5270d874716d0dd75dae63e1a48a3ff39317b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Wed, 25 Mar 2020 23:57:05 -0400 Subject: [PATCH] All agent SLURLs should use the name system names, not just profile ones. --- indra/llui/llurlentry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index f2bbe8214..a68f4df9f 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -666,7 +666,7 @@ std::string LLUrlEntryAgent::getLabel(const std::string &url, const LLUrlLabelCa LLAvatarName av_name; if (LLAvatarNameCache::get(agent_id, &av_name)) { - std::string label = av_name.getCompleteName(); + std::string label = av_name.getNSName(); // handle suffixes like /mute or /offerteleport label = localize_slapp_label(url, label);