Call headObject if file not in filecache 🙈

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2019-02-14 18:34:04 +01:00 committed by Backportbot
parent db27cb20af
commit bc71889657
1 changed files with 1 additions and 1 deletions

View File

@ -408,7 +408,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
}
try {
if (isset($this->filesCache[$path]) && $this->headObject($path)) {
if (isset($this->filesCache[$path]) || $this->headObject($path)) {
return 'file';
}
if ($this->headObject($path . '/')) {