diff options
author | Robin Appelman <robin@icewind.nl> | 2018-03-07 13:33:35 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-03-07 13:33:35 +0100 |
commit | fc35352122f0bfd07627d8e1f4773950116eb7cd (patch) | |
tree | 3b88444781e0e7c400367a804b7476012eecc4ca | |
parent | 076b49b9fe54060bf08b6ef55bfea34fc7279fd6 (diff) | |
download | nextcloud-server-fc35352122f0bfd07627d8e1f4773950116eb7cd.tar.gz nextcloud-server-fc35352122f0bfd07627d8e1f4773950116eb7cd.zip |
disable part files for object stores
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | lib/private/Files/ObjectStore/ObjectStoreStorage.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index 45c22a81a7b..8adc12297d2 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; + } } |