diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-04-26 17:17:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 17:17:24 +0200 |
commit | edd9444209ec8f0737821870fa9a25b7fe5dc0e6 (patch) | |
tree | dde3acfa507c55ca3f6041f6c0a1988df213c6f5 /apps | |
parent | 94a4d47b22db9e2218a9598842b399949213bb12 (diff) | |
parent | 5334a3dc337b5883763ac8e1eaef58c1a435144b (diff) | |
download | nextcloud-server-edd9444209ec8f0737821870fa9a25b7fe5dc0e6.tar.gz nextcloud-server-edd9444209ec8f0737821870fa9a25b7fe5dc0e6.zip |
Merge pull request #4503 from nextcloud/downstream-27281
fix objectstore rename
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/File.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index 1f878df1564..d0a01ef255b 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -512,6 +512,7 @@ class File extends Node implements IFile { // TODO: in the future use ChunkHandler provided by storage return !$storage->instanceOfStorage('OCA\Files_Sharing\External\Storage') && !$storage->instanceOfStorage('OC\Files\Storage\OwnCloud') && + !$storage->instanceOfStorage('OC\Files\ObjectStore\ObjectStoreStorage') && $storage->needsPartFile(); } |