Use public contact ID in Model\Profile::getVCardHtml instead of potentially self-contact ID

- This prevented contact conversation link from working
This commit is contained in:
Hypolite Petovan 2023-11-05 08:49:12 -05:00
parent 35de254bd2
commit da9baf2be8
1 changed files with 8 additions and 3 deletions

View File

@ -307,7 +307,12 @@ class Profile
$profile_url = $profile['url'];
$cid = $profile['id'];
$contact = Contact::selectFirst(['id'], ['uri-id' => $profile['uri-id'], 'uid' => 0]);
if (!$contact) {
return $o;
}
$cid = $contact['id'];
$follow_link = null;
$unfollow_link = null;
@ -457,12 +462,12 @@ class Profile
$mention_label = DI::l10n()->t('Post to group');
$mention_url = 'compose/0?body=!' . $profile['addr'];
$network_label = DI::l10n()->t('View group');
$network_url = 'network/group/' . $profile['id'];
$network_url = 'network/group/' . $cid;
} else {
$mention_label = DI::l10n()->t('Mention');
$mention_url = 'compose/0?body=@' . $profile['addr'];
$network_label = DI::l10n()->t('Network Posts');
$network_url = 'contact/' . $profile['id'] . '/conversations';
$network_url = 'contact/' . $cid . '/conversations';
}
$tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');