diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-09-01 17:47:05 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2011-09-01 17:47:05 -0400 |
commit | da7f2af75cc3f14f64fa4bdae83e555be0074a1e (patch) | |
tree | 65bd375b7b7b78a4c64588259564fa412ed0a8b7 /indra | |
parent | da39e2c5e3d660542c6e8eba3abad561a7d30ffc (diff) |
Fix for model metrics
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llmeshrepository.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index bd18da2251..25ae514274 100755 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -1460,8 +1460,8 @@ void LLMeshUploadThread::wholeModelToLLSD(LLSD& dest, bool include_textures) if (model_name.empty()) model_name = "mesh model"; result["name"] = model_name; - if (model_metric.empty()) model_metric = "MUT_Other"; - result["metric"] = model_metric; + if (model_metric.empty()) model_metric = "MUT_Unspecified"; + res["metric"] = model_metric; result["asset_resources"] = res; dump_llsd_to_file(result,make_dump_name("whole_model_",dump_num)); |