Merge pull request #9648 from annando/issue-9633

Issue 9633: Avoid contact lookup in conversation to avoid long loading times
This commit is contained in:
Hypolite Petovan 2020-12-11 16:16:31 -05:00 committed by GitHub
commit 8aa2942ac9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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