also use storage copy when dav copying directories
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
5f5203a285
commit
e0598117e1
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue