From e0598117e1492e3071e5cdb6b13e762f662603d1 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 21 Jan 2021 17:58:20 +0100 Subject: [PATCH] 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(-) diff --git a/apps/dav/lib/Connector/Sabre/Directory.php b/apps/dav/lib/Connector/Sabre/Directory.php index cb9a4121d1..fd9370f3e5 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();