Merge pull request #16 from trasherdk/web-ui-content-type

Add Content-Type to JSON response
This commit is contained in:
Jethro Grassie 2019-10-26 19:04:29 -04:00 committed by GitHub
commit e784fb24ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;