Removemount expects absolutePath
This commit is contained in:
parent
7224e99ccd
commit
3a14cfc295
|
@ -290,7 +290,7 @@ class View {
|
||||||
$absolutePath = $this->getAbsolutePath($path);
|
$absolutePath = $this->getAbsolutePath($path);
|
||||||
$mount = Filesystem::getMountManager()->find($absolutePath);
|
$mount = Filesystem::getMountManager()->find($absolutePath);
|
||||||
if ($mount->getInternalPath($absolutePath) === '') {
|
if ($mount->getInternalPath($absolutePath) === '') {
|
||||||
return $this->removeMount($mount, $path);
|
return $this->removeMount($mount, $absolutePath);
|
||||||
}
|
}
|
||||||
if ($this->is_dir($path)) {
|
if ($this->is_dir($path)) {
|
||||||
return $this->basicOperation('rmdir', $path, array('delete'));
|
return $this->basicOperation('rmdir', $path, array('delete'));
|
||||||
|
|
Loading…
Reference in New Issue