Issue 9633: Avoid contact lookup in conversation to avoid long loading times

This commit is contained in:
Michael Vogel 2020-12-11 15:16:29 +01:00
parent 675f54e44f
commit cd428a2d28
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}