summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authormax-nextcloud <max@nextcloud.com>2023-01-24 18:02:12 +0100
committerGitHub <noreply@github.com>2023-01-24 18:02:12 +0100
commita635674d27366bb5a5d17c80c2fa599d97c34a2d (patch)
treedd1719dc4107f671791cfbbf1e39f12f0fe30412 /config
parent44af64c1380b9fb6ea72bd29d140bd490bdf43d9 (diff)
downloadnextcloud-server-a635674d27366bb5a5d17c80c2fa599d97c34a2d.tar.gz
nextcloud-server-a635674d27366bb5a5d17c80c2fa599d97c34a2d.zip
Fix default value for files_no_background_scan
The value is read in https://github.com/nextcloud/server/blob/b888c6146327d842e21988b0d90d6ade4f3a9435/apps/files/lib/BackgroundJob/ScanFiles.php#L105 and the default value is false. Signed-off-by: max-nextcloud <max@nextcloud.com>
Diffstat (limited to 'config')
-rw-r--r--config/config.sample.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php
index d529661b81d..f7861c3c94c 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -2223,7 +2223,7 @@ $CONFIG = [
* scan to sync filesystem and database. Only users with unscanned files
* (size < 0 in filecache) are included. Maximum 500 users per job.
*
- * Defaults to ``true``
+ * Defaults to ``false``
*/
'files_no_background_scan' => false,