Fix description for SetupChecks/NeedsSystemAddressBookSync

Co-authored-by: Daniel <mail@danielkesselberg.de>
Signed-off-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
pull/32550/head
Côme Chilliet 2023-10-09 11:34:05 +07:00 committed by Côme Chilliet
parent bec6c0a441
commit fa3c0e4b1c
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with 1 additions and 1 deletions

@ -49,7 +49,7 @@ class NeedsSystemAddressBookSync implements ISetupCheck {
public function run(): SetupResult {
if ($this->config->getAppValue('dav', 'needs_system_address_book_sync', 'no') === 'no') {
return new SetupResult(SetupResult::SUCCESS, $this->l10n->t('The address book sync has already run'));
return new SetupResult(SetupResult::SUCCESS, $this->l10n->t('No outstanding DAV system address book sync.'));
} else {
return new SetupResult(SetupResult::WARNING, $this->l10n->t('The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occurred. Please run it manually by calling occ dav:sync-system-addressbook.'));
}