diff options
author | Rider Linden <rider@lindenlab.com> | 2015-10-07 16:09:08 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-10-07 16:09:08 -0700 |
commit | 1356be0fe9e15c8205e660e491185827d74bcb07 (patch) | |
tree | d0621c24f74f316b803e067ce1d6815367efdc00 /indra/llmessage/llcorehttputil.h | |
parent | 8974f7e1133232699dcc743eafbfcc8209988104 (diff) |
MAINT-5691: Browser was using deprecated outbox display type AND not correctly returning error body to application.
LLCore:HTTP now will provide and LLSD translation of the message body when possible in the case of an error HTTP result
VMM alert boxes now use type="alertmodal" rather than "outbox"
Diffstat (limited to 'indra/llmessage/llcorehttputil.h')
-rw-r--r-- | indra/llmessage/llcorehttputil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmessage/llcorehttputil.h b/indra/llmessage/llcorehttputil.h index 9328427c34..6460155134 100644 --- a/indra/llmessage/llcorehttputil.h +++ b/indra/llmessage/llcorehttputil.h @@ -282,6 +282,7 @@ public: protected: /// this method may modify the status value virtual LLSD handleSuccess(LLCore::HttpResponse * response, LLCore::HttpStatus &status) = 0; + virtual LLSD parseBody(LLCore::HttpResponse *response) = 0; private: void buildStatusEntry(LLCore::HttpResponse *response, LLCore::HttpStatus status, LLSD &result); |