From: Julius Härtl Date: Mon, 22 Jun 2020 12:15:42 +0000 (+0200) Subject: Remove rescanDelay from directory mtime X-Git-Tag: v20.0.0beta1~373^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=69f4c5003286557d69bdfe8df886491467f3387f;p=nextcloud-server.git Remove rescanDelay from directory mtime Signed-off-by: Julius Härtl --- diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index 0fb520cf9d4..641a26b20ee 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -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));