Replaced "getDetailsByURL" with "getByURL/getByURLForUser"
This commit is contained in:
@@ -1008,7 +1008,7 @@ class Transmitter
|
||||
$url = DI::baseUrl() . '/search?tag=' . urlencode($term['name']);
|
||||
$tags[] = ['type' => 'Hashtag', 'href' => $url, 'name' => '#' . $term['name']];
|
||||
} else {
|
||||
$contact = Contact::getDetailsByURL($term['url']);
|
||||
$contact = Contact::getByURL($term['url'], 0, ['addr'], false);
|
||||
if (!empty($contact['addr'])) {
|
||||
$mention = '@' . $contact['addr'];
|
||||
} else {
|
||||
@@ -1141,7 +1141,7 @@ class Transmitter
|
||||
return '';
|
||||
}
|
||||
|
||||
$data = Contact::getDetailsByURL($match[1]);
|
||||
$data = Contact::getByURL($match[1], 0, ['url', 'nick'], false);
|
||||
if (empty($data['nick'])) {
|
||||
return $match[0];
|
||||
}
|
||||
@@ -1861,7 +1861,7 @@ class Transmitter
|
||||
$mentions = [];
|
||||
|
||||
foreach (Tag::getByURIId($uriid, [Tag::IMPLICIT_MENTION]) as $tag) {
|
||||
$profile = Contact::getDetailsByURL($tag['url']);
|
||||
$profile = Contact::getByURL($tag['url'], 0, ['addr', 'contact-type', 'nick'], false);
|
||||
if (!empty($profile['addr'])
|
||||
&& $profile['contact-type'] != Contact::TYPE_COMMUNITY
|
||||
&& !strstr($body, $profile['addr'])
|
||||
|
||||
Reference in New Issue
Block a user