diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2024-04-30 20:26:22 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2024-05-02 02:14:21 +0200 |
commit | 18f23d9a559d3b5ed61d4fc4d3cfa9fa6c50689c (patch) | |
tree | f021ec1b63a23cc6d01687af91db825edd7c3a38 /indra/newview/llaisapi.cpp | |
parent | 23729442aab7130f3368d433e8a5a9dd45ff6b98 (diff) |
secondlife/viewer#1360 Avoid of using avatar full names
Diffstat (limited to 'indra/newview/llaisapi.cpp')
-rw-r--r-- | indra/newview/llaisapi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp index f23ce13608..6acfb7358e 100644 --- a/indra/newview/llaisapi.cpp +++ b/indra/newview/llaisapi.cpp @@ -839,7 +839,7 @@ void AISAPI::onUpdateReceived(const LLSD& update, COMMAND_TYPE type, const LLSD& if ( (type == UPDATECATEGORY || type == UPDATEITEM) && gSavedSettings.getBOOL("DebugAvatarAppearanceMessage")) { - dump_sequential_xml(gAgentAvatarp->getFullname() + "_ais_update", update); + dump_sequential_xml(gAgentAvatarp->getDebugName() + "_ais_update", update); } AISUpdate ais_update(update, type, request_body); |