Fix empty application/json.

This commit is contained in:
kj 2023-04-14 16:43:50 -04:00
parent 06b7907f7c
commit a8d95cb55b
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ class Router {
private static function get_json(): object {
$contentType = isset($_SERVER["CONTENT_TYPE"]) ? trim($_SERVER["CONTENT_TYPE"]) : '';
if ($contentType === "application/json") {
return json_decode(trim(file_get_contents("php://input")));
return (object) json_decode(trim(file_get_contents("php://input")));
}
return (object) '';
}