diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-25 17:52:05 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-04-25 17:52:05 +0200 |
commit | 5334a3dc337b5883763ac8e1eaef58c1a435144b (patch) | |
tree | 0db35b6cdbf968b1506d3cb3a66249c06cd30296 /apps/dav | |
parent | 8ef25a7628d44465d4777686227407f9a2067700 (diff) | |
download | nextcloud-server-5334a3dc337b5883763ac8e1eaef58c1a435144b.tar.gz nextcloud-server-5334a3dc337b5883763ac8e1eaef58c1a435144b.zip |
fix objectstore rename
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav')
-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(); } |