From cd428a2d282d176b4718dd051764865879eb8368 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 11 Dec 2020 15:16:29 +0100 Subject: [PATCH] Issue 9633: Avoid contact lookup in conversation to avoid long loading times --- include/conversation.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 837c6a047c..f0d121a3ca 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -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; }