diff options
| author | andreykproductengine <akleshchev@productengine.com> | 2017-02-15 20:40:03 +0200 |
|---|---|---|
| committer | andreykproductengine <akleshchev@productengine.com> | 2017-02-15 20:40:03 +0200 |
| commit | 605160d501158362ced3e62425bdcd8d28895fd5 (patch) | |
| tree | 0bd0338860645e47902b9f761d6309bc46688116 /indra/newview/llfloaterconversationpreview.cpp | |
| parent | 9c015df3fab0b5cc229ad1a0393e5da50ee29883 (diff) | |
MAINT-7118 Swapping legacy people API with new cache
Diffstat (limited to 'indra/newview/llfloaterconversationpreview.cpp')
| -rw-r--r-- | indra/newview/llfloaterconversationpreview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfloaterconversationpreview.cpp b/indra/newview/llfloaterconversationpreview.cpp index a358b7c10b..b48ecc8f31 100644 --- a/indra/newview/llfloaterconversationpreview.cpp +++ b/indra/newview/llfloaterconversationpreview.cpp @@ -25,6 +25,7 @@ #include "llviewerprecompiledheaders.h" +#include "llavatarnamecache.h" #include "llconversationlog.h" #include "llfloaterconversationpreview.h" #include "llimview.h" @@ -220,7 +221,7 @@ void LLFloaterConversationPreview::showHistory() else { std::string legacy_name = gCacheName->buildLegacyName(from); - gCacheName->getUUID(legacy_name, from_id); + from_id = LLAvatarNameCache::findIdByName(legacy_name); } LLChat chat; |
