Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Jul 31, 2023
1 parent 97aadcf commit d5fff21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private function preparePushChangedContacts(Collection $contacts, Collection $ch
*/
private function filterContacts(Collection $contacts): Collection
{
return $contacts->reject(fn (ContactDto $contact): bool => $this->getContactInVault() === $this->backend()->getUuid($contact->uri)
return $contacts->reject(fn (string $uri): bool => $this->getContactInVault() === $this->backend()->getUuid($uri)
);
}

Expand Down

0 comments on commit d5fff21

Please sign in to comment.