fix listShares error handling

This commit is contained in:
Robin Appelman 2021-03-09 20:25:39 +01:00
commit 9b1c0eff3d

View file

@ -79,7 +79,7 @@ class NativeState {
list(, , , , $path) = explode('/', $uri, 5); list(, , , , $path) = explode('/', $uri, 5);
$path = '/' . $path; $path = '/' . $path;
} else { } else {
$path = null; $path = $uri;
} }
$this->handleError($path); $this->handleError($path);
} }