Merge pull request #21584 from nextcloud/backport/21530/stable19

[stable19] Remove rescanDelay from directory mtime
This commit is contained in:
Morris Jobke 2020-07-02 23:35:17 +02:00 committed by GitHub
commit 79b3923a42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -57,11 +57,6 @@ class AmazonS3 extends \OC\Files\Storage\Common {
return false;
}
/**
* @var int in seconds
*/
private $rescanDelay = 10;
/** @var CappedMemoryCache|Result[] */
private $objectCache;
@ -378,7 +373,7 @@ class AmazonS3 extends \OC\Files\Storage\Common {
if ($this->is_dir($path)) {
//folders don't really exist
$stat['size'] = -1; //unknown
$stat['mtime'] = time() - $this->rescanDelay * 1000;
$stat['mtime'] = time();
} else {
$stat['size'] = $this->getContentLength($path);
$stat['mtime'] = strtotime($this->getLastModified($path));