Merge pull request #12162 from owncloud/ext-s3-missingfolderwithsamename

Do not remove dir entry if it has the same name as the parent
remotes/origin/fix-10825
Jörn Friedrich Dreyer 11 years ago
commit df18bd3e0d
  1. 5
      apps/files_external/lib/amazons3.php

@ -267,10 +267,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
$file = basename(
isset($object['Key']) ? $object['Key'] : $object['Prefix']
);
if ($file != basename($path)) {
$files[] = $file;
}
$files[] = $file;
}
\OC\Files\Stream\Dir::register('amazons3' . $path, $files);

Loading…
Cancel
Save