Revert "make Swift::testLocal workable by fixing the prefix used with the object listing in opendir"
This reverts commit b92061da5a
.
This commit is contained in:
parent
b92061da5a
commit
a1e956263c
|
@ -198,18 +198,15 @@ class Swift extends \OC\Files\Storage\Common {
|
||||||
$path .= '/';
|
$path .= '/';
|
||||||
}
|
}
|
||||||
|
|
||||||
error_log($path."\n", 3, "/tmp/opendir");
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$files = array();
|
$files = array();
|
||||||
$objects = $this->container->ObjectList(array(
|
$objects = $this->container->ObjectList(array(
|
||||||
'prefix' => $path . '/'
|
'prefix' => $path
|
||||||
));
|
));
|
||||||
|
|
||||||
while ($object = $objects->Next()) {
|
while ($object = $objects->Next()) {
|
||||||
$file = basename($object->Name());
|
$file = basename($object->Name());
|
||||||
if ($file !== basename($path)) {
|
if ($file !== basename($path)) {
|
||||||
error_log($file."\n", 3, "/tmp/opendir");
|
|
||||||
$files[] = $file;
|
$files[] = $file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue