Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
  • Loading branch information
tobiasKaminsky committed Jul 12, 2024
1 parent 6d54e4a commit aa50170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/Search/ContactsSearchProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public function search(IUser $user, ISearchQuery $query): SearchResult {
$result->addAttribute("displayName", $title);
$result->addAttribute("email", $subline);
$result->addAttribute("phoneNumber", (string)$vCard->TEL);
$result->addAttribute("uid", $vCard->UID);
$result->addAttribute("uid", (string) $vCard->UID);

return $result;
}, $searchResults);
Expand Down

0 comments on commit aa50170

Please sign in to comment.