summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-05-19 15:27:50 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-05-19 15:27:50 +0200
commitd832c4ae2302c56169afccad9cbfe845323f295b (patch)
tree6475b8eec7df24d1051135971136925e6a9a19f7 /lib
parent54a6ba47c070240a103c28259e45e682589cf73a (diff)
downloadnextcloud-server-d832c4ae2302c56169afccad9cbfe845323f295b.tar.gz
nextcloud-server-d832c4ae2302c56169afccad9cbfe845323f295b.zip
Fix unexisting class and broken doc
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/objectstore/objectstorestorage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/objectstore/objectstorestorage.php b/lib/private/files/objectstore/objectstorestorage.php
index 3c92665da3f..72baa1bc61b 100644
--- a/lib/private/files/objectstore/objectstorestorage.php
+++ b/lib/private/files/objectstore/objectstorestorage.php
@@ -220,7 +220,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common {
\OC\Files\Stream\Dir::register('objectstore' . $path . '/', $files);
return opendir('fakedir://objectstore' . $path . '/');
- } catch (Exception $e) {
+ } catch (\Exception $e) {
\OCP\Util::writeLog('objectstore', $e->getMessage(), \OCP\Util::ERROR);
return false;
}