1
0
Fork 0
mirror of https://github.com/sbrl/powahroot.git synced 2024-06-01 20:23:01 +00:00
This commit is contained in:
Starbeamrainbowlabs 2022-02-24 01:25:29 +00:00
parent 0bd0f62029
commit aa650e8260
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -44,7 +44,7 @@ class Sender {
* @return {void} * @return {void}
*/ */
json(status_code, obj) { json(status_code, obj) {
this.string(status_code, "application/json", JSON.parse(obj)); this.string(status_code, "application/json", JSON.stringify(obj));
} }
/** /**
* Sends a given string with a given content-type. * Sends a given string with a given content-type.