diff options
author | Robin Appelman <robin@icewind.nl> | 2018-03-07 13:33:35 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-03-08 13:09:02 +0100 |
commit | a95ccf4248251e6593350aa640395f28d24bbe62 (patch) | |
tree | 1816aa22d0895f99e43e2878bbfee02f42fd36e8 /lib/private | |
parent | d7a70aba84f25cdfe49da4b531ff6561257058a1 (diff) | |
download | nextcloud-server-a95ccf4248251e6593350aa640395f28d24bbe62.tar.gz nextcloud-server-a95ccf4248251e6593350aa640395f28d24bbe62.zip |
disable part files for object stores
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private')
-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 acb8d670780..4c540071471 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php @@ -424,4 +424,8 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { public function hasUpdated($path, $time) { return false; } + + public function needsPartFile() { + return false; + } } |