summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llxmlrpclistener.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/indra/newview/llxmlrpclistener.cpp b/indra/newview/llxmlrpclistener.cpp
index 83c4592c1d..8088fe2511 100644
--- a/indra/newview/llxmlrpclistener.cpp
+++ b/indra/newview/llxmlrpclistener.cpp
@@ -433,6 +433,18 @@ private:
LL_DEBUGS("LLXMLRPCListener") << "val: " << val << LL_ENDL;
responses.insert(key, val);
}
+ else if (xmlrpc_type_boolean == type)
+ {
+ LLSD::Boolean val(XMLRPC_GetValueBoolean(current));
+ LL_DEBUGS("LLXMLRPCListener") << "val: " << val << LL_ENDL;
+ responses.insert(key, val);
+ }
+ else if (xmlrpc_type_datetime == type)
+ {
+ std::string iso8601_date(XMLRPC_GetValueDateTime_ISO8601(current));
+ LL_DEBUGS("LLXMLRPCListener") << "val: " << iso8601_date << LL_ENDL;
+ responses.insert(key, LLSD::Date(iso8601_date));
+ }
else if (xmlrpc_type_double == type)
{
LLSD::Real val(XMLRPC_GetValueDouble(current));