diff options
author | Rider Linden <none@none> | 2015-03-25 11:31:11 -0700 |
---|---|---|
committer | Rider Linden <none@none> | 2015-03-25 11:31:11 -0700 |
commit | e140118fc41b79e403b299cabe1653af1971e87a (patch) | |
tree | a67ab5d98aaec4e6be50ddf67c537a799fcc8d15 /indra/llcorehttp/httpcommon.cpp | |
parent | 3c46c6bcf2afcac5e0d6f435480cbee5c3136f63 (diff) |
Replace appearance responder with new LLCore Appearance Handler.
Prep for some slight cleanup of the code.
Add AP_AVATAR Policy
Diffstat (limited to 'indra/llcorehttp/httpcommon.cpp')
-rwxr-xr-x | indra/llcorehttp/httpcommon.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llcorehttp/httpcommon.cpp b/indra/llcorehttp/httpcommon.cpp index d923dfa5d6..99238ea920 100755 --- a/indra/llcorehttp/httpcommon.cpp +++ b/indra/llcorehttp/httpcommon.cpp @@ -149,6 +149,10 @@ std::string HttpStatus::toString() const default: if (isHttpStatus()) { + // special handling for status 499 "Linden Catchall" + if ((getType() == 499) && (!getMessage().empty())) + return getMessage(); + // Binary search for the error code and string int bottom(0), top(http_errors_count); while (true) |