Merge pull request #19592 from owncloud/availability-root-always-exists

The root of a storage always exists
remotes/origin/exclude_directories_III
Thomas Müller 9 years ago
commit 1ce911d2f9
  1. 3
      lib/private/files/storage/wrapper/availability.php

@ -220,6 +220,9 @@ class Availability extends Wrapper {
/** {@inheritdoc} */
public function file_exists($path) {
if ($path === '') {
return true;
}
$this->checkAvailability();
try {
return parent::file_exists($path);

Loading…
Cancel
Save