From 77a63241ffc083c774a99374aa241f4046616f41 Mon Sep 17 00:00:00 2001 From: Pavel Shevaev Date: Thu, 27 Feb 2025 20:26:42 +0300 Subject: [PATCH] Enabling junk check by default --- cache.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.inc.php b/cache.inc.php index 7bfe893..5f716de 100644 --- a/cache.inc.php +++ b/cache.inc.php @@ -154,7 +154,7 @@ class ConfigFetchParams public bool $verbose = false; public ?int $max_workers = null; public bool $touch_files_with_includes = true; - public bool $check_junk = false; + public bool $check_junk = true; function __construct(ConfigGlobals $globals, ConfigScanResult $scanned, bool $force_stale = false, bool $verbose = false, ?int $max_workers = null)