diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-19 16:23:36 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-19 16:23:36 +0200 |
commit | f59576c3ca9ca8e4708002fffe8d4b14135dcd6b (patch) | |
tree | a3d6c66d4b33563a88aa91e528d43fa72a69a831 /lib | |
parent | 10d1fd1306400f61ad219c976557df6e8a431f0e (diff) | |
parent | d832c4ae2302c56169afccad9cbfe845323f295b (diff) | |
download | nextcloud-server-f59576c3ca9ca8e4708002fffe8d4b14135dcd6b.tar.gz nextcloud-server-f59576c3ca9ca8e4708002fffe8d4b14135dcd6b.zip |
Merge pull request #16447 from owncloud/fix-minor-code-problems
Fix unexisting class and broken doc
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/objectstore/objectstorestorage.php | 2 |
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; } |