diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-05-02 16:03:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-02 16:03:31 +0200 |
commit | a56ec1062af36c02666277f7f97f6a407a87d1e1 (patch) | |
tree | 838df54551f4edd92f82ead880cd40c4775a297f /apps/files_external | |
parent | dfe6d65410ba2f8ae671a7f75764639533c8c068 (diff) | |
parent | 055a003661a5c53e092103f02c57015f256ece94 (diff) | |
download | nextcloud-server-a56ec1062af36c02666277f7f97f6a407a87d1e1.tar.gz nextcloud-server-a56ec1062af36c02666277f7f97f6a407a87d1e1.zip |
Merge pull request #9346 from nextcloud/techdep/noid/needsPartFile_to_storage
Use an actual function of the storage to determine needsPartFile
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/Lib/Storage/OwnCloud.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/Storage/OwnCloud.php b/apps/files_external/lib/Lib/Storage/OwnCloud.php index d56e6b66145..3ee2b70ef22 100644 --- a/apps/files_external/lib/Lib/Storage/OwnCloud.php +++ b/apps/files_external/lib/Lib/Storage/OwnCloud.php @@ -73,4 +73,8 @@ class OwnCloud extends \OC\Files\Storage\DAV{ parent::__construct($params); } + + public function needsPartFile() { + return false; + } } |