diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 15:18:56 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-24 15:18:56 +0200 |
commit | 51b0036d8f714e3693be744784f65c34dee64afa (patch) | |
tree | fd2a9754e210d396ccfdcc80affc65c571ceebbc /lib/private/legacy/filechunking.php | |
parent | c9b26d065b567fa3a62a5ecfcfebb8fb275e9f1c (diff) | |
download | nextcloud-server-51b0036d8f714e3693be744784f65c34dee64afa.tar.gz nextcloud-server-51b0036d8f714e3693be744784f65c34dee64afa.zip |
Changed labels of chunk TTL to mention chunks
Diffstat (limited to 'lib/private/legacy/filechunking.php')
-rw-r--r-- | lib/private/legacy/filechunking.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/filechunking.php b/lib/private/legacy/filechunking.php index f58497a3c98..9b8a5a6f766 100644 --- a/lib/private/legacy/filechunking.php +++ b/lib/private/legacy/filechunking.php @@ -48,7 +48,7 @@ class OC_FileChunking { */ public function __construct($info) { $this->info = $info; - $this->ttl = \OC::$server->getConfig()->getSystemValue('cache_folder_gc_ttl', 86400); + $this->ttl = \OC::$server->getConfig()->getSystemValue('cache_chunk_gc_ttl', 86400); } public function getPrefix() { |