Skip to content

Commit

Permalink
Merge pull request #38792 from nextcloud/backport/38777/stable27
Browse files Browse the repository at this point in the history
[stable27] fix(carddav): Make SystemAddressBook::__construct $groupManager argument nullable
  • Loading branch information
blizzz authored Jul 10, 2023
2 parents 7073c21 + 270d661 commit 1b422df
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 1b422df

Please sign in to comment.