diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-15 19:38:41 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-11-15 19:39:20 +0000 |
commit | 6efeefbca20d573b76513869b688f1ea1daae709 (patch) | |
tree | d179ce7898e441d5b89fecaee83238fb989cb1d0 | |
parent | Merge pull request #6097 (diff) | |
download | monero-6efeefbca20d573b76513869b688f1ea1daae709.tar.xz |
epee: set application/json MIME type on json errors
-rw-r--r-- | contrib/epee/include/net/http_server_handlers_map2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/epee/include/net/http_server_handlers_map2.h b/contrib/epee/include/net/http_server_handlers_map2.h index 07ed8157b..0c0653cd6 100644 --- a/contrib/epee/include/net/http_server_handlers_map2.h +++ b/contrib/epee/include/net/http_server_handlers_map2.h @@ -120,6 +120,7 @@ #define BEGIN_JSON_RPC_MAP(uri) else if(query_info.m_URI == uri) \ { \ uint64_t ticks = epee::misc_utils::get_tick_count(); \ + response_info.m_mime_tipe = "application/json"; \ epee::serialization::portable_storage ps; \ if(!ps.load_from_json(query_info.m_body)) \ { \ @@ -148,6 +149,7 @@ #define PREPARE_OBJECTS_FROM_JSON(command_type) \ handled = true; \ + response_info.m_mime_tipe = "application/json"; \ boost::value_initialized<epee::json_rpc::request<command_type::request> > req_; \ epee::json_rpc::request<command_type::request>& req = static_cast<epee::json_rpc::request<command_type::request>&>(req_);\ if(!req.load(ps)) \ |