summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-08-06 13:38:14 +0200
committerRobin Appelman <icewind@owncloud.com>2014-08-06 13:38:14 +0200
commit12207ec0c7c725dce6b25d8c70306ced9bdc0410 (patch)
tree632c2ef8f0f64d282b8216e73cd3f644ae8b5ecc /lib
parent1deb6aadd305d9c211d5cd640cfa7780119d644c (diff)
downloadnextcloud-server-12207ec0c7c725dce6b25d8c70306ced9bdc0410.tar.gz
nextcloud-server-12207ec0c7c725dce6b25d8c70306ced9bdc0410.zip
Fix SharedCache::getPathById
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/node/root.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/node/root.php b/lib/private/files/node/root.php
index 2172d474efb..18e7a6b681a 100644
--- a/lib/private/files/node/root.php
+++ b/lib/private/files/node/root.php
@@ -162,7 +162,7 @@ class Root extends Folder implements Emitter {
if ($this->view->file_exists($fullPath)) {
return $this->createNode($fullPath);
} else {
- throw new NotFoundException();
+ throw new NotFoundException($path);
}
} else {
throw new NotPermittedException();