aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2017-06-07 17:35:27 +0200
committerRobin Appelman <robin@icewind.nl>2017-09-18 15:16:27 +0200
commit9154b27943aa5bd0bc8145abbd4335ed197e308f (patch)
tree6542907f2f99c08d0c51c92388101ccf8e70ec32
parentcc9dd4280f22c7cecc5d25336c0c36c4451fb0be (diff)
downloadnextcloud-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.php4
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
*/