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
parent 659ed3ecda
commit 0d667d18bb
No known key found for this signature in database
GPG Key ID: 36E3664E099D0614
1 changed files with 1 additions and 1 deletions

View File

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