Clear statcache before getting the mtime from local storage backends

This commit is contained in:
Robin Appelman 2014-09-05 12:05:04 +02:00
parent e9029f94cb
commit db3f7238dd
1 changed files with 1 additions and 0 deletions

View File

@ -134,6 +134,7 @@ if (\OC_Util::runningOnWindows()) {
}
public function filemtime($path) {
clearstatcache($this->getSourcePath($path));
return filemtime($this->getSourcePath($path));
}