]> git.mxchange.org Git - friendica.git/commitdiff
Issue 9633: Avoid contact lookup in conversation to avoid long loading times
authorMichael Vogel <icarus@dabo.de>
Fri, 11 Dec 2020 14:16:29 +0000 (15:16 +0100)
committerMichael Vogel <icarus@dabo.de>
Fri, 11 Dec 2020 14:16:29 +0000 (15:16 +0100)
include/conversation.php

index 837c6a047cfef3fd0e2ac7dbe00dbf3296c2fa20..f0d121a3cae4952f9d20e96dcbfc6f0b4470c931 100644 (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;
                }