sforkowany z mirror/friendica
Merge pull request #9648 from annando/issue-9633
Issue 9633: Avoid contact lookup in conversation to avoid long loading times2022.09-rc
commit
8aa2942ac9
|
@ -324,8 +324,7 @@ function conv_get_blocklist()
|
|||
$blocklist = [];
|
||||
|
||||
foreach (explode(',', $str_blocked) as $entry) {
|
||||
// The 4th parameter guarantees that there always will be a public contact entry
|
||||
$cid = Contact::getIdForURL(trim($entry), 0, false, ['url' => trim($entry)]);
|
||||
$cid = Contact::getIdForURL(trim($entry), 0, false);
|
||||
if (!empty($cid)) {
|
||||
$blocklist[] = $cid;
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue