remove unneeded is_dir from file cache gc

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/9584/head
Robin Appelman 6 years ago
parent fd4a7bf72a
commit 07e5b30b90
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB

@ -174,7 +174,7 @@ class File implements ICache {
*/
public function gc() {
$storage = $this->getStorage();
if ($storage and $storage->is_dir('/')) {
if ($storage) {
// extra hour safety, in case of stray part chunks that take longer to write,
// because touch() is only called after the chunk was finished
$now = time() - 3600;

Loading…
Cancel
Save