diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-08-06 13:38:14 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-08-07 13:44:47 +0200 |
commit | 9598efc7cd52904d36a6d91d2119013df17acd9b (patch) | |
tree | 346fbff915de11923b522dff256ade9235e4908b /lib | |
parent | 8c56be5722e776d69e41b15091b88eadac904e31 (diff) | |
download | nextcloud-server-9598efc7cd52904d36a6d91d2119013df17acd9b.tar.gz nextcloud-server-9598efc7cd52904d36a6d91d2119013df17acd9b.zip |
Fix SharedCache::getPathById
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/node/root.php | 2 |
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(); |