Pārlūkot izejas kodu

Merge pull request #12284 from nextcloud/fix/1020/search_shared_external

Properly search the root of a shared external storage
tags/v15.0.0beta1
Morris Jobke pirms 5 gadiem
vecāks
revīzija
add35c7f31
Revīzijas autora e-pasta adrese nav piesaistīta nevienam kontam
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      lib/private/Files/Cache/Wrapper/CacheJail.php

+ 1
- 1
lib/private/Files/Cache/Wrapper/CacheJail.php Parādīt failu

@@ -94,7 +94,7 @@ class CacheJail extends CacheWrapper {

protected function filterCacheEntry($entry) {
$rootLength = strlen($this->getRoot()) + 1;
return ($entry['path'] === $this->getRoot()) or (substr($entry['path'], 0, $rootLength) === $this->getRoot() . '/');
return $rootLength === 1 || ($entry['path'] === $this->getRoot()) || (substr($entry['path'], 0, $rootLength) === $this->getRoot() . '/');
}

/**

Notiek ielāde…
Atcelt
Saglabāt