mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 06:08:46 -04:00
Fix overwriting folders on rename with SFTP
This aligns the behavior with other storages and also fixes the failing unit test testRenameOverWriteDirectory
This commit is contained in:
parent
b37e1ed17f
commit
d372836efc
1 changed files with 1 additions and 1 deletions
|
|
@ -426,7 +426,7 @@ class SFTP extends \OC\Files\Storage\Common {
|
|||
*/
|
||||
public function rename($source, $target) {
|
||||
try {
|
||||
if (!$this->is_dir($target) && $this->file_exists($target)) {
|
||||
if ($this->file_exists($target)) {
|
||||
$this->unlink($target);
|
||||
}
|
||||
return $this->getConnection()->rename(
|
||||
|
|
|
|||
Loading…
Reference in a new issue