aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2017-06-07 17:35:27 +0200
committerRobin Appelman <robin@icewind.nl>2017-10-03 14:11:16 +0200
commitd97f66454ce0abedd172eac4065b5d99bd940951 (patch)
tree92d40d3f6d238b036181d9380f46ae3cd7a98ffe /apps
parent83ef030ea698dd306cbcfc8d80a828b0623de0d0 (diff)
downloadnextcloud-server-d97f66454ce0abedd172eac4065b5d99bd940951.tar.gz
nextcloud-server-d97f66454ce0abedd172eac4065b5d99bd940951.zip
disable part files for s3 external storage
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps')
-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
*/