mirror of
https://github.com/sbrl/powahroot.git
synced 2024-11-23 22:53:00 +00:00
Fix crash int he neww .json() method
This commit is contained in:
parent
71c78a45d7
commit
eb7b8fcfb9
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class Sender {
|
|||
* @return {void}
|
||||
*/
|
||||
json(status_code, obj) {
|
||||
this.string(status_code, "application/json", obj);
|
||||
this.string(status_code, "application/json", JSON.parse(obj));
|
||||
}
|
||||
/**
|
||||
* Sends a given string with a given content-type.
|
||||
|
|
Loading…
Reference in a new issue