Filter magic dot object when swift directory

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2017-07-25 14:29:44 +02:00
parent 004c3d8e1c
commit 4cafe899fa
No known key found for this signature in database
GPG Key ID: CBCA68FBAEBF98C9
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}