Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Signed-off-by: Andy Xheli <[email protected]>

Co-authored-by: Carl Schwan <[email protected]>
Signed-off-by: Andy Xheli <[email protected]>
  • Loading branch information
2 people authored and backportbot-nextcloud[bot] committed Oct 5, 2022
commit 31e5e102c1b97bd285dc6930cd575e337741fc6d
2 changes: 1 addition & 1 deletion lib/private/Contacts/ContactsMenu/ContactsStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ private function contactArrayToEntry(array $contact): Entry {
if (isset($contact['UID'])) {
$entry->setId($contact['UID']);
$uid = $contact['UID'];
$avatar = "/index.php/avatar/$uid/64";
$avatar = $this->urlGenerator->linkToRoute('core.getAvatar', ['userId' => $uid, 'size' => 64]);
$entry->setAvatar($avatar);
}

Expand Down