From 168978c02e042ca10746f3c7a8692fb36f6cd13e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 21 Jan 2021 17:58:20 +0100 Subject: also use storage copy when dav copying directories Signed-off-by: Robin Appelman --- apps/dav/lib/Connector/Sabre/Directory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/dav') diff --git a/apps/dav/lib/Connector/Sabre/Directory.php b/apps/dav/lib/Connector/Sabre/Directory.php index 8052f81929c..f2227f70151 100644 --- a/apps/dav/lib/Connector/Sabre/Directory.php +++ b/apps/dav/lib/Connector/Sabre/Directory.php @@ -452,7 +452,7 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICol public function copyInto($targetName, $sourcePath, INode $sourceNode) { - if ($sourceNode instanceof File) { + if ($sourceNode instanceof File || $sourceNode instanceof Directory) { $destinationPath = $this->getPath() . '/' . $targetName; $sourcePath = $sourceNode->getPath(); -- cgit v1.2.3