Browse Source

Merge pull request #38777 from nextcloud/fix/carddav/system-address-book-nullable-groupmanager

fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
pull/38794/head
Christoph Wurst 3 years ago
committed by GitHub
parent
commit
3f766e90af
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/dav/lib/CardDAV/SystemAddressbook.php

2
apps/dav/lib/CardDAV/SystemAddressbook.php

@ -64,7 +64,7 @@ class SystemAddressbook extends AddressBook {
IUserSession $userSession,
?IRequest $request = null,
?TrustedServers $trustedServers = null,
?IGroupManager $groupManager) {
?IGroupManager $groupManager = null) {
parent::__construct($carddavBackend, $addressBookInfo, $l10n);
$this->config = $config;
$this->userSession = $userSession;

Loading…
Cancel
Save