Skip to content

Commit

Permalink
Merge pull request #38777 from nextcloud/fix/carddav/system-address-b…
Browse files Browse the repository at this point in the history
…ook-nullable-groupmanager

fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
  • Loading branch information
ChristophWurst authored Jun 13, 2023
2 parents 4b3c552 + 62c4196 commit 3f766e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/CardDAV/SystemAddressbook.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function __construct(BackendInterface $carddavBackend,
IUserSession $userSession,
?IRequest $request = null,
?TrustedServers $trustedServers = null,
?IGroupManager $groupManager) {
?IGroupManager $groupManager = null) {
parent::__construct($carddavBackend, $addressBookInfo, $l10n);
$this->config = $config;
$this->userSession = $userSession;
Expand Down

0 comments on commit 3f766e9

Please sign in to comment.