1
0
Fork 0

Use the function from the contact template instead

This commit is contained in:
Michael 2020-07-31 03:55:01 +00:00
commit 893f6bd692
7 changed files with 23 additions and 33 deletions

View file

@ -27,6 +27,7 @@ use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Contact;
use Friendica\Model\Profile;
use Friendica\Module\Contact as ModuleContact;
/**
* Controller for /match.
@ -91,9 +92,9 @@ function match_content(App $a)
continue;
}
$contact = Contact::getByURL($profile->url);
$contact = Contact::getByURLForUser($profile->url, local_user());
if (!empty($contact)) {
$entries[] = Contact::getTemplateData($contact, $i);
$entries[] = ModuleContact::getContactTemplateVars($contact, $i);
}
}