aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel <mail@danielkesselberg.de>2023-09-15 11:50:37 +0200
committerGitHub <noreply@github.com>2023-09-15 11:50:37 +0200
commit4a8bb597b41cdcbefca576013eba08ad15241345 (patch)
treeaf04006ffcddff6ec80f68ea1bd8e6d24a01cd1b
parent48f5c7c1c200379e583f6b428ecfe079b5c18605 (diff)
parent108916cf5eafbbbba1707867619cb828c75771d6 (diff)
downloadnextcloud-server-4a8bb597b41cdcbefca576013eba08ad15241345.tar.gz
nextcloud-server-4a8bb597b41cdcbefca576013eba08ad15241345.zip
Merge pull request #40416 from nextcloud/fix/noid/check-for-user-count
-rw-r--r--apps/dav/lib/Migration/Version1027Date20230504122946.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Migration/Version1027Date20230504122946.php b/apps/dav/lib/Migration/Version1027Date20230504122946.php
index 998be8111ca..6d0ac9f6f86 100644
--- a/apps/dav/lib/Migration/Version1027Date20230504122946.php
+++ b/apps/dav/lib/Migration/Version1027Date20230504122946.php
@@ -49,7 +49,7 @@ class Version1027Date20230504122946 extends SimpleMigrationStep {
* @param array $options
*/
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
- if($this->userManager->countUsers() > 1000) {
+ if($this->userManager->countSeenUsers() > 1000) {
$this->config->setAppValue('dav', 'needs_system_address_book_sync', 'yes');
$output->info('Could not sync system address books during update - too many user records have been found. Please call occ dav:sync-system-addressbook manually.');
return;