Add Content-Type to JSON response

This commit is contained in:
TrasherDK 2019-10-25 19:00:16 +02:00
parent e64437b70d
commit c82ef6e3bc
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ send_json_stats (void *cls, struct MHD_Connection *connection)
mh, mb);
response = MHD_create_response_from_buffer(strlen(json),
(void*) json, MHD_RESPMEM_MUST_COPY);
MHD_add_response_header (response, "Content-Type", "application/json");
ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
MHD_destroy_response(response);
return ret;