throw a proper error if rename fails in dav
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
0afe723932
commit
7bb97e713e
|
@ -136,7 +136,9 @@ abstract class Node implements \Sabre\DAV\INode {
|
|||
|
||||
$newPath = $parentPath . '/' . $newName;
|
||||
|
||||
$this->fileView->rename($this->path, $newPath);
|
||||
if (!$this->fileView->rename($this->path, $newPath)) {
|
||||
throw new \Sabre\DAV\Exception('Failed to rename '. $this->path . ' to ' . $newPath);
|
||||
}
|
||||
|
||||
$this->path = $newPath;
|
||||
|
||||
|
|
Loading…
Reference in New Issue