diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2025-06-07 19:33:52 +0200 |
---|---|---|
committer | Richard Steinmetz <richard@steinmetz.cloud> | 2025-06-07 19:33:52 +0200 |
commit | 915cb0403da3a4fcd1027b6fc312b5e03de67da1 (patch) | |
tree | c9c8e9fe684d328fdaa8745c1f0182b392818ef3 /apps/dav/lib/Service/DefaultContactService.php | |
parent | 3b3100c82d75f63ce2fff88a54e9eb9f6ebcc519 (diff) | |
download | nextcloud-server-feat/example-event.tar.gz nextcloud-server-feat/example-event.zip |
fix: enable example contact feature by defaultfeat/example-event
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/dav/lib/Service/DefaultContactService.php')
-rw-r--r-- | apps/dav/lib/Service/DefaultContactService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Service/DefaultContactService.php b/apps/dav/lib/Service/DefaultContactService.php index ad7a1179195..24e55ef7b69 100644 --- a/apps/dav/lib/Service/DefaultContactService.php +++ b/apps/dav/lib/Service/DefaultContactService.php @@ -28,7 +28,7 @@ class DefaultContactService { } public function createDefaultContact(int $addressBookId): void { - $enableDefaultContact = $this->config->getValueString(Application::APP_ID, 'enableDefaultContact', 'no'); + $enableDefaultContact = $this->config->getValueString(Application::APP_ID, 'enableDefaultContact', 'yes'); if ($enableDefaultContact !== 'yes') { return; } |