Compare commits

...

1 Commits

Author SHA1 Message Date
Git'Fellow 3d5bf1ff81 fix(ContactsManager): Fix conflict with value type from database
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
2025-10-26 18:28:01 +01:00
+1 -1
View File
@@ -45,7 +45,7 @@ class ContactsManager {
* @param IURLGenerator $urlGenerator
*/
public function setupSystemContactsProvider(IManager $cm, ?string $userId, IURLGenerator $urlGenerator) {
$systemAddressBookExposed = $this->appConfig->getValueBool('dav', 'system_addressbook_exposed', true);
$systemAddressBookExposed = $this->appConfig->getValueString('dav', 'system_addressbook_exposed', 'yes') === 'yes';
if (!$systemAddressBookExposed) {
return;
}