mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #39644 from nextcloud/fix/noid/copy-delete-fallback-for-files
fix: copy-and-delete fallback should use unlink
This commit is contained in:
commit
2ea6c5364d
1 changed files with 1 additions and 1 deletions
|
|
@ -368,7 +368,7 @@ class Local extends \OC\Files\Storage\Common {
|
|||
return true;
|
||||
}
|
||||
|
||||
return $this->copy($source, $target) && $this->rmdir($source);
|
||||
return $this->copy($source, $target) && $this->unlink($source);
|
||||
}
|
||||
|
||||
public function copy($source, $target) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue