Prevent error from cache update on deleted files

remotes/origin/ldap_group_count
Robin McCorkell 11 years ago
parent 869e7a51f0
commit eeee9eacea
  1. 6
      lib/private/files/storage/local.php

@ -305,7 +305,11 @@ if (\OC_Util::runningOnWindows()) {
* @return bool
*/
public function hasUpdated($path, $time) {
return $this->filemtime($path) > $time;
if ($this->file_exists($path)) {
return $this->filemtime($path) > $time;
} else {
return true;
}
}
/**

Loading…
Cancel
Save