Merge pull request #8039 from owncloud/chunking-removeexpireinhaskey

Do not expire chunks while checking for their existence
remotes/origin/ldap_group_count
Vincent Petry 13 years ago
commit 0597c5226a
  1. 5
      lib/private/cache/file.php

@ -84,11 +84,6 @@ class File {
public function hasKey($key) {
$storage = $this->getStorage();
if ($storage && $storage->is_file($key)) {
$mtime = $storage->filemtime($key);
if ($mtime < time()) {
$storage->unlink($key);
return false;
}
return true;
}
return false;

Loading…
Cancel
Save