From 7a6d559f19bf68b280375be4086043b69051b72b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 27 Oct 2021 10:45:03 +0200 Subject: [PATCH] Detect mimetype by content only with content Signed-off-by: Joas Schilling --- apps/workflowengine/lib/Check/FileMimeType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/workflowengine/lib/Check/FileMimeType.php b/apps/workflowengine/lib/Check/FileMimeType.php index 2fa0361f3b48f..42b93bd951367 100644 --- a/apps/workflowengine/lib/Check/FileMimeType.php +++ b/apps/workflowengine/lib/Check/FileMimeType.php @@ -127,7 +127,7 @@ protected function getActualValue() { return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, 'httpd/unix-directory'); } - if ($this->storage->file_exists($this->path)) { + if ($this->storage->file_exists($this->path) && $this->storage->filesize($this->path)) { $path = $this->storage->getLocalFile($this->path); $mimeType = $this->mimeTypeDetector->detectContent($path); return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, $mimeType);