diff options
author | Robin Appelman <robin@icewind.nl> | 2017-06-07 17:35:27 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-09-18 15:16:27 +0200 |
commit | 9154b27943aa5bd0bc8145abbd4335ed197e308f (patch) | |
tree | 6542907f2f99c08d0c51c92388101ccf8e70ec32 | |
parent | cc9dd4280f22c7cecc5d25336c0c36c4451fb0be (diff) | |
download | nextcloud-server-9154b27943aa5bd0bc8145abbd4335ed197e308f.tar.gz nextcloud-server-9154b27943aa5bd0bc8145abbd4335ed197e308f.zip |
disable part files for s3 external storage
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | apps/files_external/lib/Lib/Storage/AmazonS3.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index 6d300312112..8a272b2ffc4 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -50,6 +50,10 @@ class AmazonS3 extends \OC\Files\Storage\Common { use S3ConnectionTrait; use S3ObjectTrait; + public function needsPartFile() { + return false; + } + /** * @var int in seconds */ |