Skip to content
Merged
Show file tree
Hide file tree
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
Drop X-NEXTCLOUD-UID
Signed-off-by: John Molakvoæ (skjnldsv) <[email protected]>
  • Loading branch information
skjnldsv committed Oct 12, 2020
commit 5a6a5a16393eb93e94bf325cd1e3b16e5647e4bf
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@ private function generateCard(RecentContact $contact): string {
'CATEGORIES' => $this->l10n->t('Recently contacted'),
];

if ($contact->getUid() !== null) {
$props['X-NEXTCLOUD-UID'] = $contact->getUid();
}
if ($contact->getEmail() !== null) {
$props['EMAIL'] = $contact->getEmail();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ protected function createRecentContact(string $email = null, string $federatedCl
'URI' => UUIDUtil::getUUID(),
'FN' => 'Foo Bar',
'CATEGORIES' => 'Recently contacted',
'X-NEXTCLOUD-UID' => 'foobar',
];

$time = $this->time->getDateTime();
Expand Down