]> source.dussan.org Git - nextcloud-server.git/commitdiff
use 'object' as the fakedir stream name
authorJörn Friedrich Dreyer <jfd@butonic.de>
Mon, 23 Jun 2014 09:07:01 +0000 (11:07 +0200)
committerJörn Friedrich Dreyer <jfd@butonic.de>
Mon, 23 Jun 2014 09:07:01 +0000 (11:07 +0200)
lib/private/files/objectstore/objectstorestorage.php

index 0054ee113f028cae2a39b127bc69d50cb8fbb59e..63d672c596a39a3f3018537fc3d254eea24d6cf6 100644 (file)
@@ -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;