From 7761f0288e39c5af1815d783e0f98eeb94759889 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 27 Nov 2014 11:53:12 +0100 Subject: [PATCH] Also clearstatcache() in MappedLocal before using the stats Local change 283c10f010f5da4ca0b6b7658ac1fa730b8858bf --- lib/private/files/storage/mappedlocal.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index f7d448d14a1..fe6fff4ebdb 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -109,6 +109,7 @@ class MappedLocal extends \OC\Files\Storage\Common { } public function stat($path) { + clearstatcache(); $fullPath = $this->getSourcePath($path); $statResult = stat($fullPath); if (PHP_INT_SIZE === 4 && !$this->is_dir($path)) { -- 2.39.5