also clear statcache in mapped local

This commit is contained in:
Robin Appelman 2014-12-02 16:39:03 +01:00
parent db3f7238dd
commit 1bbb18fe87
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ class MappedLocal extends \OC\Files\Storage\Common {
}
public function filemtime($path) {
clearstatcache($this->getSourcePath($path));
return filemtime($this->getSourcePath($path));
}