From 9717cdfb9ed91db270564e2a2c364e78ba3c920e Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Mon, 7 Aug 2017 14:19:41 +0200 Subject: [PATCH] If there is no content don't error Signed-off-by: Roeland Jago Douma --- lib/private/AppFramework/Http/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index 956744e5d5..7e21434c73 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -432,7 +432,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { // 'application/json' must be decoded manually. if (strpos($this->getHeader('Content-Type'), 'application/json') !== false) { $params = json_decode(file_get_contents($this->inputStream), true); - if(count($params) > 0) { + if($params !== null && count($params) > 0) { $this->items['params'] = $params; if($this->method === 'POST') { $this->items['post'] = $params;