fix invalidating folder cache for s3
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
3257bf2424
commit
2a6f8e65c2
|
@ -101,7 +101,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
|
|||
$keys = array_keys($this->objectCache->getData());
|
||||
$keyLength = strlen($key);
|
||||
foreach ($keys as $existingKey) {
|
||||
if (substr($existingKey, 0, $keyLength) === $keys) {
|
||||
if (substr($existingKey, 0, $keyLength) === $key) {
|
||||
unset($this->objectCache[$existingKey]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue