From f384c1350e81b32496d12ab41ca58207cc4aba7e Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 19 May 2017 16:36:04 +0200 Subject: [PATCH] Ignore paths from chunking Signed-off-by: Joas Schilling --- lib/FilesHooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/FilesHooks.php b/lib/FilesHooks.php index 08097fea8..46e31a85c 100755 --- a/lib/FilesHooks.php +++ b/lib/FilesHooks.php @@ -138,7 +138,7 @@ public function __construct(IManager $manager, * @param string $path Path of the file that has been created */ public function fileCreate($path) { - if ($path === '/') { + if ($path === '/' || $path === '' || $path === null) { return; }