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/Settings/ExampleContentSettings.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/Settings/ExampleContentSettings.php')
-rw-r--r-- | apps/dav/lib/Settings/ExampleContentSettings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Settings/ExampleContentSettings.php b/apps/dav/lib/Settings/ExampleContentSettings.php index 5f67c2f8e77..fef2d25b8d2 100644 --- a/apps/dav/lib/Settings/ExampleContentSettings.php +++ b/apps/dav/lib/Settings/ExampleContentSettings.php @@ -43,7 +43,7 @@ class ExampleContentSettings implements ISettings { } if ($contactsEnabled) { - $enableDefaultContact = $this->config->getAppValue(Application::APP_ID, 'enableDefaultContact', 'no'); + $enableDefaultContact = $this->config->getAppValue(Application::APP_ID, 'enableDefaultContact', 'yes'); $this->initialState->provideInitialState('enableDefaultContact', $enableDefaultContact); $this->initialState->provideInitialState( 'hasCustomDefaultContact', |