From 8974f7e1133232699dcc743eafbfcc8209988104 Mon Sep 17 00:00:00 2001 From: Rider Linden Date: Tue, 6 Oct 2015 14:48:24 -0700 Subject: MAINT-5693: Corrected error on Linux & Mac, force LLSD to string. --- indra/newview/llappearancemgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3