Avoid blocks with invalid entries in superblock (#5635)

This commit is contained in:
Michael Vogel 2018-08-19 12:14:12 +02:00 committed by Tobias Diekershoff
parent fc3aa9e58b
commit dfe4413463
1 changed files with 2 additions and 1 deletions

View File

@ -412,7 +412,8 @@ function conv_get_blocklist()
$blocklist = [];
foreach (explode(',', $str_blocked) as $entry) {
$cid = Contact::getIdForURL(trim($entry), 0, true);
// The 4th parameter guarantees that there always will be a public contact entry
$cid = Contact::getIdForURL(trim($entry), 0, true, ['url' => trim($entry)]);
if (!empty($cid)) {
$blocklist[] = $cid;
}