Merge pull request #6102 from nextcloud/swift-filter-dot-11
[11] Filter magic dot object when swift directory
This commit is contained in:
commit
b0408f9f03
|
@ -275,7 +275,7 @@ class Swift extends \OC\Files\Storage\Common {
|
|||
/** @var OpenCloud\ObjectStore\Resource\DataObject $object */
|
||||
foreach ($objects as $object) {
|
||||
$file = basename($object->getName());
|
||||
if ($file !== basename($path)) {
|
||||
if ($file !== basename($path) && $file !== '.') {
|
||||
$files[] = $file;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue