diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-08-15 14:28:05 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-08-15 14:28:05 -0400 |
commit | 73dbcc10c5b35e2b55a454e600e86ddd7d24399d (patch) | |
tree | 83b2dea1926d1bd2f0fcf8f0355d3ea0f7fb4ba5 | |
parent | 48b7eff75835058f144bbc27a5b2ef2997be2be4 (diff) |
requestServerAppearanceUpdate bails out if corresponding cap is null
-rwxr-xr-x | indra/newview/llappearancemgr.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 3e02f98933..5f1a880ebd 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -2619,7 +2619,8 @@ void LLAppearanceMgr::requestServerAppearanceUpdate() std::string url = gAgent.getRegion()->getCapability("UpdateAvatarAppearance"); if (url.empty()) { - llwarns << "no cap for UpdateAvatarAppearance" << llendl; + llwarns << "NO CAP for UpdateAvatarAppearance. This is a bug." << llendl; + return; } LLSD body; |