Fix empty application/json.
This commit is contained in:
		| @@ -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) ''; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user