From 110d4968463eb68ec50f2d14c16fea8b755ec927 Mon Sep 17 00:00:00 2001 From: max-nextcloud Date: Tue, 24 Jan 2023 18:02:12 +0100 Subject: [PATCH] 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 --- config/config.sample.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index a992479b9f803..3c548ea1b82ff 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2181,7 +2181,7 @@ * 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,