diff options
author | simon <none@none> | 2013-03-20 15:25:41 -0700 |
---|---|---|
committer | simon <none@none> | 2013-03-20 15:25:41 -0700 |
commit | ccfc0d3c4d8e498e12ead469480dc9d1b1a5ff32 (patch) | |
tree | c98a6c49a994502fa6314b8e250642d3476bdcaf /indra | |
parent | 8e54ae95d1417f51edd6c68c389fd6cd7322ca52 (diff) |
Don't assert on HTTP_NOT_FOUND for some mesh data. Reviewed by Kelly
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llmeshrepository.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp index 7a857ea7be..809f85a7b5 100755 --- a/indra/newview/llmeshrepository.cpp +++ b/indra/newview/llmeshrepository.cpp @@ -2177,7 +2177,7 @@ void LLMeshHeaderResponder::completedRaw(U32 status, const std::string& reason, // and (somewhat more optional than the others) retries // again after some set period of time - llassert(status == HTTP_SERVICE_UNAVAILABLE || status == HTTP_REQUEST_TIME_OUT || status == HTTP_INTERNAL_ERROR); + llassert(status == HTTP_NOT_FOUND || status == HTTP_SERVICE_UNAVAILABLE || status == HTTP_REQUEST_TIME_OUT || status == HTTP_INTERNAL_ERROR); if (status == HTTP_SERVICE_UNAVAILABLE || status == HTTP_REQUEST_TIME_OUT || status == HTTP_INTERNAL_ERROR) { //retry |