From: Robin Appelman Date: Tue, 2 Dec 2014 15:39:03 +0000 (+0100) Subject: also clear statcache in mapped local X-Git-Tag: v7.0.6RC1~17^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0ca15003301bcdf2625c75fbd0f874922899dde3;p=nextcloud-server.git also clear statcache in mapped local --- diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index 4ff02d29523..b08f8b2b0e0 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -149,6 +149,7 @@ class MappedLocal extends \OC\Files\Storage\Common { } public function filemtime($path) { + clearstatcache($this->buildPath($path)); return filemtime($this->buildPath($path)); }