Convert invalid path exception to sabre exception on MOVE
This commit is contained in:
parent
b6165b6865
commit
1f91e9e65d
|
@ -106,7 +106,11 @@ class ObjectTree extends \Sabre\DAV\Tree {
|
|||
|
||||
$path = trim($path, '/');
|
||||
if ($path) {
|
||||
$this->fileView->verifyPath($path, basename($path));
|
||||
try {
|
||||
$this->fileView->verifyPath($path, basename($path));
|
||||
} catch (\OCP\Files\InvalidPathException $ex) {
|
||||
throw new InvalidPath($ex->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($this->cache[$path])) {
|
||||
|
|
|
@ -239,7 +239,7 @@ class ObjectTree extends \Test\TestCase {
|
|||
}
|
||||
|
||||
/**
|
||||
* @expectedException \OCP\Files\InvalidPathException
|
||||
* @expectedException \OC\Connector\Sabre\Exception\InvalidPath
|
||||
*/
|
||||
public function testGetNodeForPathInvalidPath() {
|
||||
$path = '/foo\bar';
|
||||
|
|
Loading…
Reference in New Issue