From fc35352122f0bfd07627d8e1f4773950116eb7cd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 7 Mar 2018 13:33:35 +0100 Subject: [PATCH] disable part files for object stores Signed-off-by: Robin Appelman --- lib/private/Files/ObjectStore/ObjectStoreStorage.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index 45c22a81a7..8adc12297d 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php @@ -423,4 +423,8 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { public function hasUpdated($path, $time) { return false; } + + public function needsPartFile() { + return false; + } }