diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-23 11:07:01 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-06-23 11:07:01 +0200 |
commit | 7ec53571c4b0df361aedc82204d5dba0cca1fd0b (patch) | |
tree | c16da451ab6e9436d9c4f9ca41412087fb9e2a13 /lib | |
parent | c112a1d323e363eaf12574bf094a90ce2f89f028 (diff) | |
download | nextcloud-server-7ec53571c4b0df361aedc82204d5dba0cca1fd0b.tar.gz nextcloud-server-7ec53571c4b0df361aedc82204d5dba0cca1fd0b.zip |
use 'object' as the fakedir stream name
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/objectstore/objectstorestorage.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/objectstore/objectstorestorage.php b/lib/private/files/objectstore/objectstorestorage.php index 0054ee113f0..63d672c596a 100644 --- a/lib/private/files/objectstore/objectstorestorage.php +++ b/lib/private/files/objectstore/objectstorestorage.php @@ -211,9 +211,9 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { $files[] = $file['name']; } - \OC\Files\Stream\Dir::register('objstore' . $path, $files); + \OC\Files\Stream\Dir::register('object' . $path, $files); - return opendir('fakedir://objstore' . $path); + return opendir('fakedir://object' . $path); } catch (Exception $e) { \OCP\Util::writeLog('objectstore', $e->getMessage(), \OCP\Util::ERROR); return false; |