diff options
author | Rider Linden <rider@lindenlab.com> | 2015-10-06 14:48:24 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-10-06 14:48:24 -0700 |
commit | 8974f7e1133232699dcc743eafbfcc8209988104 (patch) | |
tree | 4df14356fca382e562c11d2dbfc9fba245082f82 /indra | |
parent | edd23c42fa3dc1ac7baa06fb2e02e1a602030a75 (diff) |
MAINT-5693: Corrected error on Linux & Mac, force LLSD to string.
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llappearancemgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 4b7115d6b3..720a4ff2df 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -3455,7 +3455,7 @@ void LLAppearanceMgr::serverAppearanceUpdateCoro() } } - std::string message = (result.has("error")) ? result["error"] : status.toString(); + std::string message = (result.has("error")) ? result["error"].asString() : status.toString(); LL_WARNS("Avatar") << "Appearance Failure. server responded with \"" << message << "\"" << LL_ENDL; // We may have requested a bake for a stale COF (especially if the inventory |